c6a9cd69c2
* NEW: Add examples again. I hope correctly this time. git-svn-id: svn://localhost/gambas/trunk@6726 867c0c6c-44f3-4631-809d-bfa615b0a4ec
30 lines
602 B
Text
30 lines
602 B
Text
# Gambas Form File 3.0
|
|
|
|
{ Form Form
|
|
MoveScaled(52.2857,29,39,39)
|
|
Text = ("Analog clock")
|
|
Arrangement = Arrange.Fill
|
|
{ MenuPopUp Menu
|
|
Text = ("File")
|
|
Visible = False
|
|
{ MenuAbout Menu
|
|
Text = ("&About")
|
|
Shortcut = "F11"
|
|
}
|
|
{ MenuSep Menu
|
|
}
|
|
{ MenuExit Menu
|
|
Text = ("E&xit")
|
|
}
|
|
}
|
|
{ DwgArea DrawingArea
|
|
MoveScaled(2,0,21,24)
|
|
Background = Color.LightBackground
|
|
ToolTip = ("Resize Window and the clock will follow \nRight click for a menu")
|
|
}
|
|
{ TimerClk #Timer
|
|
#MoveScaled(17.1429,2.2857)
|
|
Enabled = True
|
|
Delay = 250
|
|
}
|
|
}
|