c6a9cd69c2
* NEW: Add examples again. I hope correctly this time. git-svn-id: svn://localhost/gambas/trunk@6726 867c0c6c-44f3-4631-809d-bfa615b0a4ec
54 lines
1.1 KiB
Text
54 lines
1.1 KiB
Text
# Gambas Form File 3.0
|
|
|
|
{ Form Form
|
|
MoveScaled(0,0,36,28)
|
|
Text = ("Create Table")
|
|
Icon = Picture["icons/16/Table.png"]
|
|
Resizable = False
|
|
{ lblTitle Label
|
|
MoveScaled(1,1,34,5)
|
|
Font = Font["+4"]
|
|
Background = Color.LightBackground
|
|
Text = ("Create Table")
|
|
Alignment = Align.Center
|
|
Border = Border.Sunken
|
|
}
|
|
{ lblName Label
|
|
MoveScaled(1,8,11,3)
|
|
Font = Font["+1"]
|
|
Text = ("Name:")
|
|
}
|
|
{ txtName TextBox
|
|
MoveScaled(13,8,22,3)
|
|
}
|
|
{ lblEngine Label
|
|
MoveScaled(1,13,11,3)
|
|
Font = Font["+1"]
|
|
Text = ("Engine:")
|
|
}
|
|
{ cmbEngine ComboBox
|
|
MoveScaled(13,13,22,3)
|
|
ReadOnly = True
|
|
}
|
|
{ lblCharset Label
|
|
MoveScaled(1,18,11,3)
|
|
Font = Font["+1"]
|
|
Text = ("Charset:")
|
|
}
|
|
{ cmbCharset ComboBox
|
|
MoveScaled(13,18,22,3)
|
|
ReadOnly = True
|
|
}
|
|
{ btnCancel Button
|
|
MoveScaled(22,23,13,4)
|
|
Text = ("&Cancel")
|
|
Picture = Picture["icon:/16/cancel"]
|
|
Cancel = True
|
|
}
|
|
{ tbnOK Button
|
|
MoveScaled(1,23,13,4)
|
|
Text = ("&Ok")
|
|
Picture = Picture["icon:/16/ok"]
|
|
Default = True
|
|
}
|
|
}
|