Poll: Who has tried a740g new InForm-PE setup
You do not have permission to vote in this poll.
and successed without any modifications
85.71%
6 85.71%
and succeded with modifications
14.29%
1 14.29%
and failed to get InForm_PE exe's needed
0%
0 0%
Total 7 vote(s) 100%
* You voted for this item. [Show Results]

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Poll: who has tried a740g InForm setup for QB64pe
#4
Just created a form with a single button on it.
Code: (Select All)

': This program uses
': InForm-PE for QB64-PE - v1.5.8
': Copyright (c) 2025 QB64 Phoenix Edition Team
': https://github.com/QB64-Phoenix-Edition/InForm-PE
'-----------------------------------------------------------

': Controls' IDs: ------------------------------------------------------------------
Dim Shared Form1 As Long
Dim Shared AButtonBT As Long

': External modules: ---------------------------------------------------------------
'$Include:'InForm/InForm.bi'
'$Include:'InForm/xp.uitheme'
'$Include:'button.frm'

': Event procedures: ---------------------------------------------------------------
Sub __UI_BeforeInit

End Sub

Sub __UI_OnLoad

End Sub

Sub __UI_BeforeUpdateDisplay
    'This event occurs at approximately 60 frames per second.
    'You can change the update frequency by calling SetFrameRate DesiredRate%

End Sub

Sub __UI_BeforeUnload
    'If you set __UI_UnloadSignal = False here you can
    'cancel the user's request to close.

End Sub

Sub __UI_Click (id As Long)
    Select Case id
        Case Form1

        Case AButtonBT
            _Title "CLICKY!"
    End Select
End Sub

Sub __UI_MouseEnter (id As Long)
    Select Case id
        Case Form1

        Case AButtonBT

    End Select
End Sub

Sub __UI_MouseLeave (id As Long)
    Select Case id
        Case Form1

        Case AButtonBT

    End Select
End Sub

Sub __UI_FocusIn (id As Long)
    Select Case id
        Case AButtonBT

    End Select
End Sub

Sub __UI_FocusOut (id As Long)
    'This event occurs right before a control loses focus.
    'To prevent a control from losing focus, set __UI_KeepFocus = True below.
    Select Case id
        Case AButtonBT

    End Select
End Sub

Sub __UI_MouseDown (id As Long)
    Select Case id
        Case Form1

        Case AButtonBT

    End Select
End Sub

Sub __UI_MouseUp (id As Long)
    Select Case id
        Case Form1

        Case AButtonBT

    End Select
End Sub

Sub __UI_KeyPress (id As Long)
    'When this event is fired, __UI_KeyHit will contain the code of the key hit.
    'You can change it and even cancel it by making it = 0
    Select Case id
        Case AButtonBT

    End Select
End Sub

Sub __UI_TextChanged (id As Long)
    Select Case id
    End Select
End Sub

Sub __UI_ValueChanged (id As Long)
    Select Case id
    End Select
End Sub

Sub __UI_FormResized

End Sub

'$Include:'InForm/InForm.ui'

Closed it.  Went straight into QB64PE with no issues.
Wrote a single update for my button.  It changes my title.
Compiled.   No problems.
Ran.  No problems.
Clicked Button.  Title changed to "CLICKY".

All seems to work as advertised straight out of the box with zero issues in Windows 11 64-bit.
Reply


Messages In This Thread
RE: Poll: who has tried a740g InForm setup for QB64pe - by SMcNeill - 02-04-2026, 05:36 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  InForm Paint by Fellippe Heitor Magdha 0 103 01-31-2026, 10:08 AM
Last Post: Magdha
  Trackword Puzzle Solver (InForm) Program - Referenced to Elsewhere Magdha 2 201 01-26-2026, 08:13 PM
Last Post: bplus
  PUT YOUR INFORM PROGRAMS HERE Magdha 14 611 01-25-2026, 10:16 AM
Last Post: Magdha
  Crossword Maker InForm Program - Referenced to Elsewhere Magdha 0 106 01-23-2026, 11:54 AM
Last Post: Magdha

Forum Jump:


Users browsing this thread: 1 Guest(s)