': This form was generated by
': InForm - GUI library for QB64 - v1.2
': Fellippe Heitor, 2016-2020 - fellippe@qb64.org - @fellippeheitor
': https://github.com/FellippeHeitor/InForm
'-----------------------------------------------------------
SUB __UI_LoadForm

    DIM __UI_NewID AS LONG, __UI_RegisterResult AS LONG

    __UI_NewID = __UI_NewControl(__UI_Type_Form, "IQTest", 800, 600, 0, 0, 0)
    __UI_RegisterResult = 0
    SetCaption __UI_NewID, "IQ test"
    Control(__UI_NewID).Font = SetFont("segoeui.ttf", 12)
    Control(__UI_NewID).CenteredWindow = True

    __UI_NewID = __UI_NewControl(__UI_Type_Label, "ClickOnTheSTOPButtonBeforeTimeILB", 257, 27, 272, 520, 0)
    __UI_RegisterResult = 0
    SetCaption __UI_NewID, "Click on the STOP button before time is OVER"
    Control(__UI_NewID).HasBorder = True
    Control(__UI_NewID).VAlign = __UI_Middle
    Control(__UI_NewID).BorderSize = 3
    Control(__UI_NewID).AutoSize = True

    __UI_NewID = __UI_NewControl(__UI_Type_Button, "STOPClickMeBT", 110, 23, 339, 290, 0)
    __UI_RegisterResult = 0
    SetCaption __UI_NewID, "STOP (Click me!)"
    Control(__UI_NewID).CanHaveFocus = True

    __UI_NewID = __UI_NewControl(__UI_Type_ProgressBar, "ProgressBar1", 300, 23, 475, 567, 0)
    __UI_RegisterResult = 0
    SetCaption __UI_NewID, "\92;#"
    Control(__UI_NewID).Max = 100

    __UI_NewID = __UI_NewControl(__UI_Type_ProgressBar, "ProgressBar2", 300, 23, 79, 567, 0)
    __UI_RegisterResult = 0
    SetCaption __UI_NewID, "\92;#"
    Control(__UI_NewID).Max = 10

    __UI_NewID = __UI_NewControl(__UI_Type_Label, "PartialTimeLB", 63, 21, 10, 568, 0)
    __UI_RegisterResult = 0
    SetCaption __UI_NewID, "Partial Time"
    Control(__UI_NewID).VAlign = __UI_Middle
    Control(__UI_NewID).AutoSize = True

    __UI_NewID = __UI_NewControl(__UI_Type_Label, "TotalTimeLB", 57, 21, 413, 568, 0)
    __UI_RegisterResult = 0
    SetCaption __UI_NewID, "Total Time"
    Control(__UI_NewID).VAlign = __UI_Middle
    Control(__UI_NewID).AutoSize = True

END SUB

SUB __UI_AssignIDs
    IQTest = __UI_GetID("IQTest")
    ClickOnTheSTOPButtonBeforeTimeILB = __UI_GetID("ClickOnTheSTOPButtonBeforeTimeILB")
    STOPClickMeBT = __UI_GetID("STOPClickMeBT")
    ProgressBar1 = __UI_GetID("ProgressBar1")
    ProgressBar2 = __UI_GetID("ProgressBar2")
    PartialTimeLB = __UI_GetID("PartialTimeLB")
    TotalTimeLB = __UI_GetID("TotalTimeLB")
END SUB
