You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@4019 8e941d3f-bd1b-0410-a28a-d453659cc2b4
77 lines
1.8 KiB
Plaintext
77 lines
1.8 KiB
Plaintext
object Form1: TForm1
|
|
Left = 340
|
|
Height = 420
|
|
Top = 154
|
|
Width = 680
|
|
Caption = 'Form1'
|
|
ClientHeight = 420
|
|
ClientWidth = 680
|
|
OnCreate = FormCreate
|
|
LCLVersion = '1.5'
|
|
object ButtonPanel: TPanel
|
|
Left = 0
|
|
Height = 38
|
|
Top = 382
|
|
Width = 680
|
|
Align = alBottom
|
|
BevelOuter = bvNone
|
|
ClientHeight = 38
|
|
ClientWidth = 680
|
|
TabOrder = 0
|
|
object BtnNew: TButton
|
|
Left = 8
|
|
Height = 25
|
|
Top = 6
|
|
Width = 75
|
|
Caption = 'New'
|
|
OnClick = BtnNewClick
|
|
TabOrder = 0
|
|
end
|
|
object BtnLoad: TButton
|
|
Left = 94
|
|
Height = 25
|
|
Top = 6
|
|
Width = 75
|
|
Caption = 'Load...'
|
|
OnClick = BtnLoadClick
|
|
TabOrder = 1
|
|
end
|
|
object BtnSave: TButton
|
|
Left = 180
|
|
Height = 25
|
|
Top = 6
|
|
Width = 75
|
|
Caption = 'Save...'
|
|
OnClick = BtnSaveClick
|
|
TabOrder = 2
|
|
end
|
|
end
|
|
object TabControl: TTabControl
|
|
Left = 0
|
|
Height = 382
|
|
Top = 0
|
|
Width = 680
|
|
OnChange = TabControlChange
|
|
TabIndex = 0
|
|
Tabs.Strings = (
|
|
'Sheet 1'
|
|
)
|
|
Align = alClient
|
|
TabOrder = 1
|
|
end
|
|
object OpenDialog: TOpenDialog
|
|
DefaultExt = '.xls'
|
|
Filter = 'Excel spreadsheet (*.xls)|*.xls|Excel XML spreadsheet (*.xlsx)|*.xlsx|LibreOffice/OpenOffice spreadsheet (*.ods)|*.ods|Wikitable (pipes) (.wikitable_pipes)|.wikitable_pipes|All files (*.*)|*.*'
|
|
Options = [ofExtensionDifferent, ofEnableSizing, ofViewDetail]
|
|
left = 192
|
|
top = 96
|
|
end
|
|
object SaveDialog: TSaveDialog
|
|
DefaultExt = '.xls'
|
|
Filter = 'Excel spreadsheet (*.xls)|*.xls|Excel XML spreadsheet (*.xlsx)|*.xlsx|LibreOffice/OpenOffice spreadsheet (*.ods)|*.ods|Wikitable (wikimedia) (.wikitable_wikimedia)|*.wikitable_wikimedia'
|
|
Options = [ofOverwritePrompt, ofExtensionDifferent, ofEnableSizing, ofViewDetail]
|
|
left = 192
|
|
top = 184
|
|
end
|
|
end
|