Alomst perfect - it works just fine, however, what if I wanted to return somthing else that a boolean value
Main Topics
Browse All TopicsI am creating a form that during the init event checks for parameter and based on that information is to continue of simply close.
The code works - however the form will NOT close without intervention form the user.
Snippet is attached.
How do I close the form without user intervention.
Read events and Clear events is handled outside the form int eh main calling program so I don't want to issue a clear events here
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
You can't do that with this method. To return something from the form, you have to put it in the unload event. The unload event does not get called if you put RETURN .F. in the init event.
What you can do is create a flag ToExit as a property of the form
IF USED(cAlias) then
* call the grid now
thisform.calias = cAlias
thisform.updategrid()
thisform.addproperty('ToEx
ELSE
* we have a problem since we need to cusror for this grid form to function
* we need to simply return now - we can log an error - but without an email
thisform.addproperty('ToEx
endif
Then in the activate event or the show event put
if thisform.ToExit
thisform.release
nodefault
endif
Business Accounts
Answer for Membership
by: tusharkanvindePosted on 2008-09-17 at 08:21:41ID: 22499712
To close a form from the init event give RETURN .F. instead of thisform.release()