my copy of vfp 9 sp1 has suddenly decided it will only run full
screen. Restarting vfp, restarting computer don't change the
behavior.

I assume I inadvertantly changed a setting, but I can't find it.

Any suggestions?

Thanks

Re: Why full screen only? by Jan

Jan
Tue Mar 04 13:40:55 CST 2008

George Smith napsal(a):
> my copy of vfp 9 sp1 has suddenly decided it will only run full
> screen. Restarting vfp, restarting computer don't change the
> behavior.
>
> I assume I inadvertantly changed a setting, but I can't find it.
>
> Any suggestions?
>
> Thanks
>
delete Foxuser.* ?

Re: Why full screen only? by George

George
Tue Mar 04 14:00:52 CST 2008

On Mar 4, 12:40=A0pm, Jan Bucek <bucek....@post.cz> wrote:
>
> delete Foxuser.* ?

I should have thought of that, but doesn't help.



Re: Why full screen only? by George

George
Tue Mar 04 14:07:47 CST 2008

More details of problem:

vfp starts minimized. Clicking the icon in the task bar does
nothing. To open, I must right click and choose maximize (the only
option available other than minimize and close.) When open, if I
click the resize box (that is the box between close and minimize, it
minimizes.


On Mar 4, 1:00=A0pm, George Smith <grsassocia...@gmail.com> wrote:
> On Mar 4, 12:40=A0pm, Jan Bucek <bucek....@post.cz> wrote:
>
>
>
> > delete Foxuser.* ?
>
> I should have thought of that, =A0but doesn't help.


Re: Why full screen only? by Jeff

Jeff
Tue Mar 04 14:27:18 CST 2008

Take a look at the properties for the Screen

See if the MaxButton property go set to .F. somehow. If it did, then set it
to .T. which is the default.

When I set it to .F. I was able to get something like the behavior that you
specified.

Jeff
"George Smith" <grsassociates@gmail.com> wrote in message
news:4865c815-adec-4652-a80d-a7dc4a4dfcd3@s12g2000prg.googlegroups.com...
> my copy of vfp 9 sp1 has suddenly decided it will only run full
> screen. Restarting vfp, restarting computer don't change the
> behavior.
>
> I assume I inadvertantly changed a setting, but I can't find it.
>
> Any suggestions?
>
> Thanks
>



Re: Why full screen only? by Dan

Dan
Tue Mar 04 14:24:52 CST 2008

George Smith wrote:
> More details of problem:
>
> vfp starts minimized. Clicking the icon in the task bar does
> nothing. To open, I must right click and choose maximize (the only
> option available other than minimize and close.) When open, if I
> click the resize box (that is the box between close and minimize, it
> minimizes.
>
>
> On Mar 4, 1:00 pm, George Smith <grsassocia...@gmail.com> wrote:
>> On Mar 4, 12:40 pm, Jan Bucek <bucek....@post.cz> wrote:
>>
>>
>>
>>> delete Foxuser.* ?
>>
>> I should have thought of that, but doesn't help.

Take a look in the VFP registry key:

HKEY_CURRENT_USER\Software\Microsoft\VisualFoxPro\<VERSION>\Desktop

What settings do you have for height, width, and zoom?

Dan



Re: Why full screen only? by Sergey

Sergey
Tue Mar 04 17:22:46 CST 2008

George Smith wrote:
> my copy of vfp 9 sp1 has suddenly decided it will only run full
> screen. Restarting vfp, restarting computer don't change the
> behavior.
>
> I assume I inadvertantly changed a setting, but I can't find it.
>
> Any suggestions?
>
> Thanks
>

George,

VFP desktop Left and Top properties in the registry got set to the big
negative values somehow. It saw it happens to other applications as
well. To fix the problem, set Left and Top from the command window

_VFP.Left = 0
_VFP.Top = 0

--
--sb--

VFP MVP

Re: Why full screen only? by George

George
Tue Mar 04 17:34:38 CST 2008

This was it! (Or I should say it fixed the problem. I didn't look in
the registry.)

Thanks to all.

G

> George,
>
> VFP desktop Left and Top properties in the registry got set to the big
> negative values somehow. It saw it happens to other applications as
> well. To fix the problem, set Left and Top from the command window
>
> _VFP.Left = 0
> _VFP.Top = 0
>
> --