Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

messages systems

Status
Not open for further replies.

ledu

Programmer
Jul 3, 2001
24
MX
Hi everybody!
I have a qustion.
Look I have made a project and I use "wait windows" to display messages so when I run my project these messages don't appear in my project, I already used set notify but it did't word?
Somebody can help?
Thanks
 
ledu

Unless someone knows better, I am fairly certain you will have to remove them all.

Chris :)
 
I Do not follow along with what you are saying Ledu! Are you trying to say
In the application you use the Wait Window "" to display messege to yourself, BUT,
When others run the application you do not want the wait window messages to appear?
if this is the case, you will have to add a few lines of code
At the start of you program add a global memvar CCTestMode=.f.
then anyplace you have a wait window
if CCTestMode
wait window ""
endif
or if you have a username you can use that
if ccUserName = "LEDU"
wait window
endif


David W. Grewe
Dave@internationalbid.com
ICQ VFP ActiveList #46145644
 
Actually this sounds like a prefect situation for using the ASSERT Command. They aren't invoked in the runtime, and can be turned ON and OFF in the development environment. See help ASSERT for details.

Rick

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top