Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- dBsee 4.6 - The Library - <b>dbmsgw()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
dbMsgW()
Displays a message in a BOX
------------------------------------------------------------------------------
Syntax:

     dbMsgW( <cMsg> ) --> NIL

Parameters:

     <cErr>     Message to be displayed. It can be split over several lines
     by means of the "//" separator.

Returns:

     NIL

Description:

     Displays a message in a box

Example:

     . Example 1
     
     dbMsgW("Good morning!")
     
     . Example 2
     
     LOCAL nCount := 0, cStr := ""
     
     
     // ErrorBox
     dbMsgErr( "dBsee//The Standard CASE" +;
               " for CLIPPER//Now available !!" )
     
     // Updating Message
     dbMsgOn( "Counter///////" +Str(nCount) )
     FOR nCount := 1 TO 10
        dbMsgUpd( "Counter" +Str(nCount) )
        Inkey(1)
     NEXT
     dbMsgOff( "Counter//" +Str(nCount) )
     
     // Window Message
     dbMsgW( "Message//In a Windows" )
     
     
     // Ask Window
     //                           esc ---+
     //                           ret --+|
     //                                 ||
     dbAskW( "Ask in a Windows (Y/N)", "yn" )
     
     // AlertBox
     dfAlert( "dBsee is The Best Code Generator",;
              {"Yes","NO"} )

See also:

     dfAlert()

See Also: dfAlert()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson