Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Close Open Windows Issue
Message
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Titre:
Close Open Windows Issue
Versions des environnements
Visual FoxPro:
VFP 8 SP1
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
MS SQL Server
Divers
Thread ID:
01446887
Message ID:
01446887
Vues:
100
I'm having a minor issue with the following routine to close any open windows when my application does an auto shutdown due in inactivity. I'm not sure why this is, but I keep gettings FORMS is not an object in my error log. The application does close any open dialogs, but with 50 users, the log is getting filled up with this error message.

Thanks for any help.
local lnForms, i
lnForms = _screen.formcount
SET MESSAGE TO [Closing Dialogs...]
IF lnForms > 0
	FOR i = lnForms to 1 STEP -1
		IF VARTYPE(_screen.Forms)=[O]                                                      << FORMS is not an object
			SET MESSAGE TO [Closing Dialog: ]+_screen.Forms(i).Name    << FORMS is not an object
			_screen.Forms(i).Release                                                          << FORMS is not an object
		ENDIF 
	ENDFOR
ENDIF 
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform