45 lines
903 B
Text
45 lines
903 B
Text
|
# Gambas Form File 3.0
|
||
|
|
||
|
{ Form Form
|
||
|
MoveScaled(0,0,73,50)
|
||
|
Text = ("Create View")
|
||
|
Icon = Picture["icons/16/View.png"]
|
||
|
Resizable = False
|
||
|
{ lblTitle Label
|
||
|
MoveScaled(1,1,71,5)
|
||
|
Font = Font["+4"]
|
||
|
Background = Color.LightBackground
|
||
|
Text = ("Create View")
|
||
|
Alignment = Align.Center
|
||
|
Border = Border.Sunken
|
||
|
}
|
||
|
{ lblName Label
|
||
|
MoveScaled(1,8,11,3)
|
||
|
Font = Font["+1"]
|
||
|
Text = ("Name:")
|
||
|
}
|
||
|
{ txtName TextBox
|
||
|
MoveScaled(13,8,59,3)
|
||
|
}
|
||
|
{ btnClue Button
|
||
|
MoveScaled(1,45,5,4)
|
||
|
ToolTip = ("Show a clue")
|
||
|
Picture = Picture["icon:/22/help"]
|
||
|
}
|
||
|
{ tbnOK Button
|
||
|
MoveScaled(44,45,13,4)
|
||
|
Text = ("&Ok")
|
||
|
Picture = Picture["icon:/16/ok"]
|
||
|
Default = True
|
||
|
}
|
||
|
{ btnCancel Button
|
||
|
MoveScaled(59,45,13,4)
|
||
|
Text = ("&Cancel")
|
||
|
Picture = Picture["icon:/16/cancel"]
|
||
|
Cancel = True
|
||
|
}
|
||
|
{ txtData TextArea
|
||
|
MoveScaled(1,12,71,32)
|
||
|
}
|
||
|
}
|