c6a9cd69c2
* NEW: Add examples again. I hope correctly this time. git-svn-id: svn://localhost/gambas/trunk@6726 867c0c6c-44f3-4631-809d-bfa615b0a4ec
37 lines
759 B
Text
37 lines
759 B
Text
# Gambas Form File 3.0
|
|
|
|
{ Form Form
|
|
MoveScaled(0,0,94,64)
|
|
Icon = Picture["icon.png"]
|
|
Arrangement = Arrange.Vertical
|
|
{ panSelect HBox
|
|
MoveScaled(0,0,82,6)
|
|
AutoResize = True
|
|
Spacing = True
|
|
Margin = True
|
|
{ txtPath TextBox
|
|
MoveScaled(0,0,54,4)
|
|
Expand = True
|
|
ReadOnly = True
|
|
}
|
|
{ btnPath Button
|
|
MoveScaled(55,0,13,4)
|
|
AutoResize = True
|
|
Text = ("Select") & "..."
|
|
Picture = Picture["icon:/small/file"]
|
|
}
|
|
{ btnHelp Button
|
|
MoveScaled(69,0,11,4)
|
|
AutoResize = True
|
|
Text = ("Help") & "..."
|
|
Picture = Picture["icon:/small/help"]
|
|
}
|
|
}
|
|
{ glaPresentation GlArea
|
|
MoveScaled(6,9,59,39)
|
|
Expand = True
|
|
}
|
|
{ timUpdate #Timer
|
|
#MoveScaled(78,18)
|
|
}
|
|
}
|