Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Minimize all forms with one form
Message
General information
Forum:
Visual FoxPro
Category:
Other
Environment versions
Visual FoxPro:
VFP 6
OS:
Windows '98
Network:
Windows 98
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01014756
Message ID:
01014822
Views:
20
Tariq,

In the Init of your forms (hopefully you are using a form subclass so you can just add the following code to that) put the following:
this.addproperty("lastwindowstate", this.windowstate)
Then in the Resize of your forms put the following code:
IF this.windowstate= 1
	_screen.WindowState = 1
	this.WindowState=this.lastwindowstate
ELSE
	this.lastwindowstate = this.windowstate
ENDIF
Previous
Reply
Map
View

Click here to load this message in the networking platform