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>dbmsgon()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
dbMsgOn()
Displays a message
------------------------------------------------------------------------------
Syntax:

     dbMsgOn( <cMessage> ) --> NIL

Parameters:

     <cMessage> Message to be displayed.

Returns:

     NIL

Description:

     Displays a message on the screen

Example:

     . Example 1
     
     dbMsgOn( "This is a message" )
     
     . 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:

     dbMsgOff(), dbMsgUpd()

See Also: dbMsgOff() dbMsgUpd()

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