-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmDriveSelect.form
43 lines (42 loc) · 933 Bytes
/
frmDriveSelect.form
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Gambas Form File 1.0
{ Form Form
MoveScaled(39.625,12.625,35,49)
'Move(317,101,280,392)
Font = Font["Luxi Sans"]
Text = ("")
Border = Window.Fixed
{ Label1 Label
MoveScaled(0,0,35,3)
'Move(0,0,280,24)
Font = Font["Luxi Sans,Bold,12"]
Text = ("Drives")
Alignment = Align.Center
Border = Border.Raised
}
{ gridDisk GridView
MoveScaled(0,3,35,40)
'Move(0,24,280,320)
Font = Font["Luxi Sans,12"]
ToolTip = ("Click on a row to select...")
}
{ Panel1 Panel
MoveScaled(0,43,35,6)
'Move(0,344,280,48)
Font = Font["Luxi Sans"]
Border = Border.Etched
{ btnOK Button
MoveScaled(2,1,14,4)
'Move(16,8,112,32)
Font = Font["Luxi Sans"]
Text = ("OK")
Default = True
}
{ btnCancel Button
MoveScaled(19,1,14,4)
'Move(152,8,112,32)
Font = Font["Luxi Sans"]
Text = ("Cancel")
Cancel = True
}
}
}