Files
HeidiSQL/source/column_selection.dfm
Ansgar Becker 7d401ffde8 Upgrade to Delphi 2010:
* Removes TNT Unicode controls, which are no longer required. All VCL controls now have native Unicode support.
* Remove Delphi 11 packages, otherwise we would either need to keep TNT or break Unicode
* PngComponents update from Uwe Raabe on http://cc.embarcadero.com/Item/26127
* Adjust auto build process
* Since Delphi 2009, Strings are now UnicodeStrings, not AnsiStrings any longer. Fix a bunch of compiler errors which came along with this change.
TODO: Project should compile but give tons of compiler warnings.
2010-01-05 23:14:33 +00:00

80 lines
1.7 KiB
Plaintext

object ColumnSelectionForm: TColumnSelectionForm
Left = 0
Top = 0
BorderStyle = bsNone
Caption = 'ColumnSelectionForm'
ClientHeight = 277
ClientWidth = 166
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
OnClose = FormClose
OnCreate = FormCreate
OnDeactivate = FormDeactivate
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object pnlBevel: TPanel
Left = 0
Top = 0
Width = 166
Height = 277
Align = alClient
BorderWidth = 3
TabOrder = 0
object btnCancel: TButton
Left = 85
Top = 246
Width = 75
Height = 25
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 3
OnClick = btnCancelClick
end
object btnOK: TButton
Left = 4
Top = 246
Width = 75
Height = 25
Caption = 'OK'
Default = True
TabOrder = 2
OnClick = btnOKClick
end
object chkSelectAll: TCheckBox
Left = 4
Top = 207
Width = 150
Height = 17
Caption = 'Select / Deselect all'
TabOrder = 1
OnClick = chkSelectAllClick
end
object chklistColumns: TCheckListBox
Left = 4
Top = 4
Width = 158
Height = 197
OnClickCheck = chklistColumnsClickCheck
Align = alTop
ItemHeight = 13
TabOrder = 0
end
object chkSort: TCheckBox
Left = 4
Top = 225
Width = 125
Height = 17
Caption = 'Sort alphabetically'
TabOrder = 4
OnClick = chkSortClick
end
end
end