': This form was generated by
': InForm - GUI library for QB64 - Beta version 7
': Fellippe Heitor, 2016-2018 - fellippe@qb64.org - @fellippeheitor
': https://github.com/FellippeHeitor/InForm
'-----------------------------------------------------------
__UI_NewID = __UI_NewControl(__UI_Type_Form, "hardwareImages", 300, 300, 0, 0, 0)
SetCaption __UI_NewID, "hardwareImages"
Control
(__UI_NewID
).
Stretch = False
Control(__UI_NewID).Font = SetFont("arial.ttf", 12)
Control
(__UI_NewID
).BackColor
= _RGB32(0, 0, 0)
__UI_NewID = __UI_NewControl(__UI_Type_Button, "ExitBT", 80, 23, 210, 267, 0)
SetCaption __UI_NewID, "E&xit"
Control
(__UI_NewID
).
Stretch = False
Control(__UI_NewID).CanHaveFocus = True
hardwareImages = __UI_GetID("hardwareImages")
ExitBT = __UI_GetID("ExitBT")