Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

My VFP window suddenly become fullscreen, no min, max, close button. 1

Status
Not open for further replies.

gryff15

Programmer
Sep 21, 2016
47
PH
How can I get back to the normal window of VFP 7. I can only close it by alt f4. I checked all the toolbars but still no title bar.
I pressed F11, F12, I end tasked it, still didn't work. Opening a new window only shows Standard toolbar.
vfp_window_problem_p98mcg.jpg


- webrider -
 
Can you get at the VFP command window? If so, try the following:
Code:
_SCREEN.Top = 20
_SCREEN.Left = 10
_SCREEN.Height = 400
_SCREEN.Width = 400

or, if that doesn't work:

Code:
_SCREEN.WindowState = 2

If that doesn't work, can you see the Properties window? If so, check that the drop-down list at the top of the window says "Screen". Then make the above settings there.

If you can't get at the above windows, come out of VFP, then locate the Resource files (FOXUSER.DBF, FOXUSER.FPT), and delete them.

Mike




__________________________________
Mike Lewis (Edinburgh, Scotland)

Visual FoxPro articles, tips and downloads
 
Thank you so much sir Mike! The window state = 2 worked. I don't know how I triggered that weird fullscreen mode.

- webrider -
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top