1
1
Fork 0
mirror of https://github.com/FellippeHeitor/InForm.git synced 2024-05-12 06:50:12 +00:00
7 Constants
Fellippe Heitor edited this page 2020-09-15 10:21:12 -03:00

InForm sets some global constants that are user-accessible.

Boolean

  • True
  • False

The traditional way of having boolean variables in QB64 is by setting True = -1, as it allows bit manipulation with operators like NOT, AND, OR, etc (False = NOT True).

Back style

  • __UI_Opaque
  • __UI_Transparent

Text align

  • __UI_Left
  • __UI_Center
  • __UI_Right
  • __UI_Top
  • __UI_Middle
  • __UI_Bottom

MessageBox Function

Buttons

  • MsgBox_OkOnly
  • MsgBox_OkCancel
  • MsgBox_AbortRetryIgnore
  • MsgBox_YesNoCancel
  • MsgBox_YesNo
  • MsgBox_RetryCancel
  • MsgBox_CancelTryagainContinue

Icons

  • MsgBox_Critical
  • MsgBox_Question
  • MsgBox_Exclamation
  • MsgBox_Information

Default button

  • MsgBox_DefaultButton1
  • MsgBox_DefaultButton2
  • MsgBox_DefaultButton3
  • MsgBox_Defaultbutton4

Modal

  • MsgBox_AppModal
  • MsgBox_SystemModal
  • MsgBox_SetForeground

Results

  • MsgBox_Ok
  • MsgBox_Cancel
  • MsgBox_Abort
  • MsgBox_Retry
  • MsgBox_Ignore
  • MsgBox_Yes
  • MsgBox_No
  • MsgBox_Tryagain
  • MsgBox_Continue

See also: