bgiNotify

Displays a simple notification message box with OK button. Takes message (String), title (String), and window (Int). Returns nothing.

BGI GUI

Parameters & Returns

Parameters

message String
title String
window Int

Returns

Void

Quick Summary

Displays a simple notification message box with OK button. Takes message (String), title (String), and window (Int). Returns nothing.

Technical Exegesis...

Displays a simple notification message box with OK button. Searches gizmoMap for window ID to get parent HWND. Calls Windows MessageBox() with MB_OK | MB_ICONINFORMATION flags. Displays message with title and information icon (blue 'i'). Blocks until user clicks OK. No return value.

This function shows a basic informational alert dialog. MB_OK provides single OK button. MB_ICONINFORMATION displays the blue information icon. Dialog is modal - blocks program execution until dismissed.

Example

Example.bam
; No example implemented yet