MB Software Solutions General Account wrote: > VFP9SP1 > > My main prg says _SCREEN.VISIBLE = .F., and my config.fpw has SCREEN = > OFF. I've got a Top Level Form (form.ShowInWindow=2) that gets called by > the main.prg. I just want this form to show, not the entire VFP window. > I can't seem to put my _screen.visible = .T. at the right spot because I > get both the Top Level form showing outside of the main vfp window. I've > done this a long time ago but seem to have forgotten the sequence. > > Tips? > > tia! > --Mike > > Hi Mike,
all you need is SCREEN=OFF in your config.fpw (I normally compile this into my Executable, but you can leave it free). Without SCREEN=OFF in the config, VFP will first display its desktop, then when your form runs, the desktop will be turned off when your _screen.Visible = .F. command runs. You don't want to set _screen.Visible = .T. ever, if you don't want the VFP desktop to display -- Frank. Frank Cazabon Samaan Systems Ltd. - Developing Solutions www.SamaanSystems.com/ _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable Archive: http://leafe.com/archives/search/profox This message: http://leafe.com/archives/byMID/profox/[email protected] ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

