Visible to Intel only — GUID: GUID-9D9C2470-CE01-4A32-AEB1-77A10CC072DC
Special Naming Convention for Certain QuickWin and Windows* Graphics Routines
Comparing QuickWin with Windows*-Based Applications
Using Windows API Routines with QuickWin
Types of QuickWin Programs
The QuickWin User Interface
USE Statement Needed for Fortran QuickWin Applications
Creating QuickWin Windows
Using QuickWin Graphics Library Routines
Selecting Display Options
Checking the Current Graphics Mode
Setting the Graphics Mode
Setting Figure Properties
Understanding Coordinate Systems
Adding Color
Writing a Graphics Program
Displaying Graphics Output
Storing and Retrieving Images
Customizing QuickWin Applications
QuickWin Programming Precautions
Simulating Nonblocking I/O
Visible to Intel only — GUID: GUID-9D9C2470-CE01-4A32-AEB1-77A10CC072DC
Displaying Message Boxes
MESSAGEBOXQQ causes your program to display a message box. You can specify the message the box displays and the caption that appears in the title bar. Both strings must be null-terminated C strings. You can also specify the type of message box. Box types are symbolic constants defined in DFLIB.MOD, and can be combined by means of the IOR intrinsic function or the .OR. operator. The available box types are listed under MESSAGEBOXQQ in the Language Reference. For example:
USE IFQWIN INTEGER response response = MESSAGEBOXQQ('Retry or Cancel?'C, 'Smith Chart & & Simulator'C, MB$RETRYCANCELQWIN .OR. MB$DEFBUTTON2)
Parent topic: Customizing QuickWin Applications