source: trunk/Forms/UInstanceOptions.lfm

Last change on this file was 13, checked in by chronos, 6 years ago
  • Fixed: Build under Lazarus 1.8.0.
File size: 2.0 KB
Line 
1object InstanceOptionsForm: TInstanceOptionsForm
2 Left = 307
3 Height = 225
4 Top = 132
5 Width = 836
6 Caption = 'Options'
7 ClientHeight = 225
8 ClientWidth = 836
9 OnCreate = FormCreate
10 OnDestroy = FormDestroy
11 OnShow = FormShow
12 LCLVersion = '1.3'
13 object ButtonCancel: TButton
14 Left = 671
15 Height = 25
16 Top = 195
17 Width = 75
18 Anchors = [akRight, akBottom]
19 Caption = 'Cancel'
20 ModalResult = 2
21 OnClick = ButtonCancelClick
22 TabOrder = 0
23 end
24 object ButtonOk: TButton
25 Left = 756
26 Height = 25
27 Top = 195
28 Width = 75
29 Anchors = [akRight, akBottom]
30 Caption = 'Ok'
31 ModalResult = 1
32 OnClick = ButtonOkClick
33 TabOrder = 1
34 end
35 object Label2: TLabel
36 Left = 8
37 Height = 25
38 Top = 72
39 Width = 125
40 Caption = 'IDE selection:'
41 ParentColor = False
42 end
43 object Label1: TLabel
44 Left = 8
45 Height = 25
46 Top = 40
47 Width = 128
48 Caption = 'FPC selection:'
49 ParentColor = False
50 end
51 object Edit1: TEdit
52 Left = 168
53 Height = 35
54 Top = 8
55 Width = 662
56 Anchors = [akTop, akLeft, akRight]
57 TabOrder = 2
58 end
59 object Label3: TLabel
60 Left = 8
61 Height = 25
62 Top = 8
63 Width = 62
64 Caption = 'Name:'
65 ParentColor = False
66 end
67 object Edit2: TEdit
68 Left = 168
69 Height = 35
70 Top = 39
71 Width = 575
72 Anchors = [akTop, akLeft, akRight]
73 ReadOnly = True
74 TabOrder = 3
75 end
76 object Button1: TButton
77 Left = 752
78 Height = 25
79 Top = 40
80 Width = 75
81 Anchors = [akTop, akRight]
82 Caption = 'Select'
83 OnClick = Button1Click
84 TabOrder = 4
85 end
86 object Edit3: TEdit
87 Left = 168
88 Height = 35
89 Top = 72
90 Width = 575
91 Anchors = [akTop, akLeft, akRight]
92 ReadOnly = True
93 TabOrder = 5
94 end
95 object Button2: TButton
96 Left = 752
97 Height = 25
98 Top = 72
99 Width = 75
100 Anchors = [akTop, akRight]
101 Caption = 'Select'
102 OnClick = Button2Click
103 TabOrder = 6
104 end
105end
Note: See TracBrowser for help on using the repository browser.