This is a multi-part message in MIME format.

------=_NextPart_000_000E_01C6F9C9.60C9F9F0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

When I used in FPW 2.6:
DEFINE WINDOW bro at 12,2 SIZE WROW()-13,1.09*WCOL() noclose FLOAT =
NOZOOM GROW

I got a window with three pull-down options on the upper left corner:
Move Ctrl+F4
Size Ctrl+F8
Next Window Ctrl+F6

but in VFP 9 the same command just gives
Move (wihout CTRL)=20
Size (without CTRL)
and there is no "Next Window"


How come this different behaviour. How can I achieve my old FPW 2.6 =
behaviour?


------=_NextPart_000_000E_01C6F9C9.60C9F9F0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2900.2963" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY>
<DIV><FONT face=3DArial size=3D2>When I used in FPW 2.6:</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>DEFINE WINDOW bro at 12,2 SIZE=20
WROW()-13,1.09*WCOL() noclose FLOAT NOZOOM GROW</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>I got a window with three pull-down =
options on the=20
upper left corner:</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Move Ctrl+F4</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Size Ctrl+F8</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Next Window Ctrl+F6</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>but in VFP 9 the same command just=20
gives</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Move (wihout CTRL)&nbsp;</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Size (without CTRL)</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>and there is no "Next =
Window"</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV><FONT face=3DArial size=3D2>How come this different behaviour. How =
can I=20
achieve my old FPW 2.6 behaviour?</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
<DIV>&nbsp;</DIV></BODY></HTML>

------=_NextPart_000_000E_01C6F9C9.60C9F9F0--

Re: DEFINE WINDOW by Dan

Dan
Fri Oct 27 11:14:46 CDT 2006

The difference is because interfaces changed moving from Windows 3.x to
Win9x and later. FPW was written for the former, VFP was written for the
latter.

DEFINE WINDOW is a deprecated command, included for backward compatibility,
and rarely needed in VFP.

Dan


WP wrote:
> When I used in FPW 2.6:
> DEFINE WINDOW bro at 12,2 SIZE WROW()-13,1.09*WCOL() noclose FLOAT
> NOZOOM GROW
>
> I got a window with three pull-down options on the upper left corner:
> Move Ctrl+F4
> Size Ctrl+F8
> Next Window Ctrl+F6
>
> but in VFP 9 the same command just gives
> Move (wihout CTRL)
> Size (without CTRL)
> and there is no "Next Window"
>
>
> How come this different behaviour. How can I achieve my old FPW 2.6
> behaviour?