Leemi
Mon Aug 09 16:58:13 CDT 2004
Hi Mike:
Try running the code after issuing a SET RESOURCE OFF and booting in Safe
mode. Might this be a problem with the Foxuser file or the video driver?
I hope this helps.
This posting is provided "AS IS" with no warranties, and confers no rights.
Sincerely,
Microsoft FoxPro Technical Support
Lee Mitchell
*-- VFP9 Public Beta Now Available!! --*
Download the VFP9 beta here:
http://msdn.microsoft.com/vfoxpro/
*-- VFP8 HAS ARRIVED!! --*
Read about all the new features of VFP8 here:
http://www.universalthread.com/VisualFoxPro/News/VFP8Release.asp
Purchase VFP8 here:
http://shop.microsoft.com/Referral/Productinfo.asp?siteID=11518
Keep an eye on the product lifecycle for Visual FoxPro here:
http://support.microsoft.com/default.aspx?id=fh;[ln];lifeprodv
- VFP5 Mainstream Support retired June 30th, 2003
- VFP6 Mainstream Support retired Sept. 30th, 2003
>What version of VFP?
>Doesn't do it for me. (VFP8, sp1)
>Dan
>Mike Farnesi wrote:
> When I create my form (from code below) and then move my form
> right so only a bit of form shows on the right side of desktop,
> then click on desktop and then click on form, it will move itself
> left ( i think to try to center w/ right edge of desktop).
>
> A browse window will not do this. Adding any other object will
> not do this. ONly a GRID object.
>
> Why?, and how can I stop this? Is this a bug? THX, Mike Farnesi
> (vfp8)
>
>
> *SELECT ANYTABLE
> PUBLIC MYFRM
> MYFRM=CREATEOBJECT('MYFORM')
> MYFRM.VISIBLE=.T.
>
> DEFINE CLASS MYFORM AS FORM
> *---------------------
> PROCEDURE INIT
> THISFORM.AddObject('MYOB','GRID') && try other Object
> THISFORM.MYOB.VISIBLE=.T.
> ENDPROC
> ENDDEFINE