Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Minimize all forms with one form
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Versions des environnements
Visual FoxPro:
VFP 6
OS:
Windows '98
Network:
Windows 98
Database:
Visual FoxPro
Divers
Thread ID:
01014756
Message ID:
01014822
Vues:
21
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
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform