mirror of
https://github.com/FellippeHeitor/InForm.git
synced 2025-01-15 11:59:34 +00:00
c756445186
- $SCREENHIDE until the form is defined. - Set _ICON even if no icon was set, so that at least the QB64 is brought in. - Minimizing the editor will also minimize the preview (Windows only). - Fix position of menu separators.
12 lines
395 B
Text
12 lines
395 B
Text
'InForm - GUI system for QB64 - Beta version 1
|
|
'Fellippe Heitor, 2016 - fellippe@qb64.org - @fellippeheitor
|
|
'-----------------------------------------------------------
|
|
SUB __UI_LoadForm
|
|
DIM __UI_NewID AS LONG
|
|
|
|
$RESIZE:ON
|
|
_RESIZE OFF
|
|
|
|
__UI_NewID = __UI_NewControl(__UI_Type_Form, "Form1", 640, 400, 0, 0,0)
|
|
Control(__UI_NewID).Font = __UI_Font("segoeui.ttf", 12, "")
|
|
END SUB
|