Apr 21, 2004 #1 LouisC4 Programmer Jul 26, 2003 54 US Hi all, I have a small form on my application, when I compile it I want the application to be the size of my form. How can I accomplish this? TIA, Louis
Hi all, I have a small form on my application, when I compile it I want the application to be the size of my form. How can I accomplish this? TIA, Louis
Apr 21, 2004 #2 rgbean Programmer Nov 9, 2000 5,707 US You can change the size of the VFP screen, by using: Code: _Screen.Width = nnn _Screen.Height = mmm You'll have to pick the values for nnn, mmm depending on the size of your form. Rick Upvote 0 Downvote
You can change the size of the VFP screen, by using: Code: _Screen.Width = nnn _Screen.Height = mmm You'll have to pick the values for nnn, mmm depending on the size of your form. Rick
Apr 21, 2004 Thread starter #3 LouisC4 Programmer Jul 26, 2003 54 US Thanks Rick, that worked. Louis Upvote 0 Downvote