c6a9cd69c2
* NEW: Add examples again. I hope correctly this time. git-svn-id: svn://localhost/gambas/trunk@6726 867c0c6c-44f3-4631-809d-bfa615b0a4ec
27 lines
522 B
Text
27 lines
522 B
Text
# Gambas Form File 3.0
|
|
|
|
{ Form Form
|
|
MoveScaled(0,0,68,11)
|
|
Arrangement = Arrange.Vertical
|
|
Margin = True
|
|
{ lblTitle Label
|
|
MoveScaled(1,1,48,3)
|
|
Expand = True
|
|
Text = ("Starting download...")
|
|
}
|
|
{ lblStatus Label
|
|
MoveScaled(1,4,11,2)
|
|
Font = Font["Italic,-2"]
|
|
}
|
|
{ HBox2 HBox
|
|
MoveScaled(1,6,65,4)
|
|
{ pgbDownload ProgressBar
|
|
MoveScaled(0,0,56,4)
|
|
Expand = True
|
|
}
|
|
{ btnAbort ToolButton
|
|
MoveScaled(61,0,4,4)
|
|
Picture = Picture["icon:/small/close"]
|
|
}
|
|
}
|
|
}
|