home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 4 Bible
/
Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso
/
source
/
TABS
/
OPTIONS.dfm
/
OPTIONS.txt
Wrap
Text File
|
1998-02-12
|
3KB
|
185 lines
object OptionsDialog: TOptionsDialog
Left = 192
Top = 101
ActiveControl = OKBtn
BorderStyle = bsDialog
Caption = 'Options'
ClientHeight = 265
ClientWidth = 359
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
Position = poScreenCenter
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object Bevel1: TBevel
Left = 8
Top = 8
Width = 345
Height = 209
Shape = bsFrame
IsControl = True
end
object Label1: TLabel
Left = 16
Top = 124
Width = 62
Height = 13
Caption = '&Config file:'
end
object Label2: TLabel
Left = 16
Top = 157
Width = 82
Height = 13
Caption = '&Input tab size:'
end
object Label3: TLabel
Left = 16
Top = 189
Width = 91
Height = 13
Caption = '&Output tab size:'
end
object Label4: TLabel
Left = 184
Top = 156
Width = 106
Height = 13
Caption = '&Backup extension:'
end
object OKBtn: TBitBtn
Left = 104
Top = 228
Width = 77
Height = 27
TabOrder = 0
OnClick = OKBtnClick
Kind = bkOK
Margin = 2
Spacing = -1
IsControl = True
end
object CancelBtn: TBitBtn
Left = 188
Top = 228
Width = 77
Height = 27
TabOrder = 1
OnClick = CancelBtnClick
Kind = bkCancel
Margin = 2
Spacing = -1
IsControl = True
end
object HelpBtn: TBitBtn
Left = 272
Top = 228
Width = 77
Height = 27
TabOrder = 2
OnClick = HelpBtnClick
Kind = bkHelp
Margin = 2
Spacing = -1
IsControl = True
end
object MiscGroup: TGroupBox
Left = 176
Top = 16
Width = 169
Height = 89
Caption = '&Miscellaneous'
TabOrder = 3
object BackupCheckbox: TCheckBox
Left = 8
Top = 16
Width = 153
Height = 17
Caption = 'Backup originial file'
State = cbChecked
TabOrder = 0
end
object AutoSaveCheckbox: TCheckBox
Left = 8
Top = 32
Width = 153
Height = 17
Caption = 'Autosave configuration'
State = cbChecked
TabOrder = 1
end
object StripCheckbox: TCheckBox
Left = 8
Top = 48
Width = 97
Height = 17
Caption = 'Strip 8th bit'
TabOrder = 2
end
object ConvertCheckbox: TCheckBox
Left = 8
Top = 64
Width = 153
Height = 17
Caption = 'Convert to uppercase'
TabOrder = 3
end
end
object OperationRGroup: TRadioGroup
Left = 16
Top = 16
Width = 153
Height = 89
Caption = 'O&peration'
ItemIndex = 1
Items.Strings = (
'&Insert tabs'
'&Remove tabs'
'&Convert tabs')
TabOrder = 4
end
object ConfigEdit: TEdit
Left = 96
Top = 120
Width = 249
Height = 21
TabOrder = 5
Text = 'Tabs.Ini'
end
object BackupExtEdit: TEdit
Left = 296
Top = 152
Width = 41
Height = 21
MaxLength = 3
TabOrder = 6
Text = 'Bak'
end
object InTabEdit: TSpinEdit
Left = 120
Top = 152
Width = 41
Height = 22
MaxLength = 2
MaxValue = 32
MinValue = 2
TabOrder = 7
Value = 8
end
object OutTabEdit: TSpinEdit
Left = 120
Top = 184
Width = 41
Height = 22
MaxLength = 2
MaxValue = 32
MinValue = 2
TabOrder = 8
Value = 8
end
end