1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
# Gambas Form File 3.0
{ Form Form
MoveScaled(35.7143,18.5714,67,17)
Text = ("Object ")
Icon = Picture["object.png"]
Resizable = False
{ btnCreateThing Button
MoveScaled(1,1,21,4)
Text = ("create the Thing !")
}
{ btnCheckThing Button
MoveScaled(23,1,21,4)
Text = ("check the Thing !")
}
{ txtCheckResult TextBox
MoveScaled(1,7,65,4)
Visible = False
}
{ btnDestroy Button
MoveScaled(45,1,21,4)
Text = ("destroy the Thing !")
}
{ Label1 Label
MoveScaled(1,12,26,4)
Text = (" by juergen@zdero.com")
}
}
|