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 Database")
|
|
Icon = Picture["icons/16/Database.png"]
|
|
Resizable = False
|
|
{ lblTitle Label
|
|
MoveScaled(1,1,34,5)
|
|
Font = Font["+4"]
|
|
Background = Color.LightBackground
|
|
Text = ("Create Database")
|
|
Alignment = Align.Center
|
|
Border = Border.Sunken
|
|
}
|
|
{ lblName Label
|
|
MoveScaled(1,8,11,3)
|
|
Font = Font["+1"]
|
|
Text = ("Name:")
|
|
}
|
|
{ txtNombre TextBox
|
|
MoveScaled(13,8,22,3)
|
|
}
|
|
{ lblCollation Label
|
|
MoveScaled(1,18,11,3)
|
|
Font = Font["+1"]
|
|
Text = ("Collation:")
|
|
}
|
|
{ cmbCollations ComboBox
|
|
MoveScaled(13,18,22,3)
|
|
ReadOnly = True
|
|
}
|
|
{ lblCharset Label
|
|
MoveScaled(1,13,11,3)
|
|
Font = Font["+1"]
|
|
Text = ("Charset:")
|
|
}
|
|
{ cmbCharset ComboBox
|
|
MoveScaled(13,13,22,3)
|
|
ReadOnly = True
|
|
}
|
|
{ btnCreate Button
|
|
MoveScaled(1,23,13,4)
|
|
Text = ("&Create")
|
|
Picture = Picture["icon:/16/new"]
|
|
Default = True
|
|
}
|
|
{ btnCancel Button
|
|
MoveScaled(22,23,13,4)
|
|
Text = ("&Cancel")
|
|
Picture = Picture["icon:/16/cancel"]
|
|
Cancel = True
|
|
}
|
|
}
|