sysShowMessage

Displays a message box dialog with a title and message. Takes title (dialog title), message (message text). Returns nothing.

System

Parameters & Returns

Parameters

title String
message String

Returns

Void

Quick Summary

Displays a message box dialog with a title and message. Takes title (dialog title), message (message text). Returns nothing.

Technical Exegesis...

Shows a Windows message box dialog with the specified title and message text. The dialog has an OK button and blocks program execution until the user closes it. If title is NULL, defaults to "Message". If message is NULL, shows an empty message.

Uses MessageBoxA with MB_OK flag. Useful for displaying alerts, errors, or information to the user. The dialog appears as a modal window on top of the application.

Example

Example.bam
; No example implemented yet