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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

top level form

Status
Not open for further replies.
Mar 4, 2003
5
US
I want ot crate a toplevel form that stands alone without the fox top level screen, but when I compile it as an EXE the top level screen appears??? I set _screen.visible =.f. but when I release my form it stays in ram. Also when I execute the exe the top level screen flickers before the visible property is set to false.

Any ideas, thanks for your help
 

to hide the main Visual FoxPro window you can do this instead,

In the Init event of the form,
Application.Visible = .F.
In the Destroy event of the form,
Application.Visible = .T.

 
The native sql now works in line with main stream sql. However if you are interested in reverting the behavior in 8.0 use the new command "set enginebehavior to 70"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top