c6a9cd69c2
* NEW: Add examples again. I hope correctly this time. git-svn-id: svn://localhost/gambas/trunk@6726 867c0c6c-44f3-4631-809d-bfa615b0a4ec
25 lines
431 B
Text
25 lines
431 B
Text
# Gambas Form File 3.0
|
|
|
|
{ Form Form
|
|
MoveScaled(0,0,51,15)
|
|
Text = ("Rename")
|
|
Resizable = False
|
|
SkipTaskbar = True
|
|
{ lblRename Label
|
|
MoveScaled(2,1,23,3)
|
|
Text = ("New filename:")
|
|
}
|
|
{ txtRename TextBox
|
|
MoveScaled(1,4,48,4)
|
|
}
|
|
{ btnOK Button
|
|
MoveScaled(34,10,15,4)
|
|
Text = ("&OK")
|
|
Default = True
|
|
}
|
|
{ btnCancel Button
|
|
MoveScaled(18,10,15,4)
|
|
Text = ("&Cancel")
|
|
Cancel = True
|
|
}
|
|
}
|