home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 16
/
CD_ASCQ_16_0994.iso
/
news
/
4611
/
fw16d.ins
/
SAMPLES
/
TESTMSG.PRG
< prev
next >
Wrap
Text File
|
1994-04-15
|
1KB
|
47 lines
#include "FiveWin.ch"
// Testing Message standard Dialog Boxes
//----------------------------------------------------------------------------//
function Main()
local cName := "Easily editing a string"
MsgInfo( "Testing defaults" )
MsgInfo( "General information Message", "Info Title" )
if MsgGet( "Please type your name",; // Title
"Your Name:",; // Label
@cName ) // A variable by reference
MsgStop( "Hello " + cName, "A Stop icon Message" )
MsgStop( "Testing defaults" )
else
MsgAlert( "Hey, you did not typed your Name", "Alerting!" )
endif
If MsgYesNo( "Are you sure you want to go", "Please select" )
nMsgBox( "A Normal message", "Ok, Bye!" )
nMsgBox( "Testing defaults" )
else
Alert( "Typicall Clipper Alert function" ) // It does not support
// all Clipper features
// yet
endif
return
//----------------------------------------------------------------------------//