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
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.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.