Hi,

When I run my exe, the main form opens as a stand-alone window. The form's
ShowWindow property = 2.

So far so good.

But an empty "ide" type window also opens. Why is this?

This is VFP9 sp1.

Thanks,

Frank

Re: ide window opens with exe? by Dan

Dan
Wed Apr 05 12:57:20 CDT 2006

Create a text file called config.fpw. Add this line to it:

SCREEN = OFF

Include this file in your project and rebuild your EXE.

Dan



Frank Dreyfus wrote:
> Hi,
>
> When I run my exe, the main form opens as a stand-alone window. The
> form's ShowWindow property = 2.
>
> So far so good.
>
> But an empty "ide" type window also opens. Why is this?
>
> This is VFP9 sp1.
>
> Thanks,
>
> Frank



Re: ide window opens with exe? by Frank

Frank
Wed Apr 05 18:35:31 CDT 2006

"Dan Freeman" <spam@microsoft.com> wrote in news:#qoZjpNWGHA.3660
@TK2MSFTNGP04.phx.gbl:

> Create a text file called config.fpw. Add this line to it:
>
> SCREEN = OFF
>
> Include this file in your project and rebuild your EXE.

Thanks Dan!

That worked like a charm.

Frank