': This form was generated by
': InForm - GUI library for QB64 - Beta version 8
': Fellippe Heitor, 2016-2018 - fellippe@qb64.org - @fellippeheitor
': https://github.com/FellippeHeitor/InForm
'-----------------------------------------------------------
SUB __UI_LoadForm

    DIM __UI_NewID AS LONG

    __UI_NewID = __UI_NewControl(__UI_Type_Form, "MaximizedWindowAlways", 1366, 715, 0, 0, 0)
    SetCaption __UI_NewID, "MaximizedWindowAlways"
    Control(__UI_NewID).Font = SetFont("segoeui.ttf", 12)
    Control(__UI_NewID).CenteredWindow = True

    __UI_NewID = __UI_NewControl(__UI_Type_Label, "InBassoDxLB", 150, 23, 1306, 682, 0)
    SetCaption __UI_NewID, "InBassoDx"
    Control(__UI_NewID).VAlign = __UI_Middle

    __UI_NewID = __UI_NewControl(__UI_Type_Label, "InAltoSinLB", 150, 23, 10, 10, 0)
    SetCaption __UI_NewID, "InAltoSin"
    Control(__UI_NewID).VAlign = __UI_Middle

    __UI_NewID = __UI_NewControl(__UI_Type_Label, "AlCentroLB", 150, 23, 667, 346, 0)
    SetCaption __UI_NewID, "AlCentro"
    Control(__UI_NewID).VAlign = __UI_Middle

END SUB

SUB __UI_AssignIDs
    MaximizedWindowAlways = __UI_GetID("MaximizedWindowAlways")
    InBassoDxLB = __UI_GetID("InBassoDxLB")
    InAltoSinLB = __UI_GetID("InAltoSinLB")
    AlCentroLB = __UI_GetID("AlCentroLB")
END SUB
