Hello all,
is it possible to add a "Don't show this message anymore" checkmark to a standard MessageBox() or should I design a custom dialog for that ?
Thanks,
Davide
Hello all,
is it possible to add a "Don't show this message anymore" checkmark to a standard MessageBox() or should I design a custom dialog for that ?
Thanks,
Davide
lMessage := .T.
...
...
Mymessage()
...
...
FUNCTION Mymessage()
IF lMessage = .T.
  IF MsgYesNo("Your Message " + CRLF + ;
           " " + CRLF + ;
           "Show this Message again ?","Message")
  ELSE
   lMessage := .F.
  ENDIF
ENDIFThanks Uwe,
I know MsgYesNo(), but the checkmark I'm searching for may apply to MsgYesNo() too. Sometimes I want to ask the user if he want to see that question shown again in future or not. This is commonly used on wizards, tips, etc.
Any other idea ?
Thanks,
Davide