c6a9cd69c2
* NEW: Add examples again. I hope correctly this time. git-svn-id: svn://localhost/gambas/trunk@6726 867c0c6c-44f3-4631-809d-bfa615b0a4ec
22 lines
422 B
Text
22 lines
422 B
Text
# Gambas Form File 3.0
|
|
|
|
{ Form Form
|
|
MoveScaled(0,0,29,17)
|
|
Text = ("About...")
|
|
Resizable = False
|
|
{ Image1 PictureBox
|
|
MoveScaled(1,1,4,4)
|
|
Picture = Picture["notepad.png"]
|
|
Stretch = True
|
|
}
|
|
{ btnOK Button
|
|
MoveScaled(7,12,15,4)
|
|
Text = ("OK")
|
|
Default = True
|
|
Cancel = True
|
|
}
|
|
{ TextLabel1 TextLabel
|
|
MoveScaled(7,1,21,9)
|
|
Text = ("This is a little notepad sample program.")
|
|
}
|
|
}
|