Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SHUT THAT PROGRAM DOWN.... Please!!
Message
General information
Forum:
Visual FoxPro
Category:
Installation, Setup and Configuration
Environment versions
Visual FoxPro:
VFP 8 SP1
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01179349
Message ID:
01179516
Views:
10
>>You simply call QUIT -- it will end the program. But you can get the dreaded "Cannot Quit VFP" message. This can be caused by having a MODAL form open -- so to get around this, go through all the open forms and close them (call the Release method). Example:
>>
>>
>>IF _Screen.FormCount > 0
>>	lnFormCount = _Screen.FormCount
>>	DO WHILE lnFormCount > 0
>>		IF !INLIST(UPPER(_Screen.Forms(lnFormCount).Name),"MAINTOOLBAR","CHECKINGTOOLBAR","SAVINGSTOOLBAR","CREDITTOOLBAR","LOANTOOLBAR","QUICKBAR")
>>			_Screen.Forms(lnFormCount).Release()
>>		ENDIF
>>		lnFormCount = lnFormCount - 1
>>		IF lnFormCount > _Screen.FormCount
>>			lnFormCount = _Screen.FormCount
>>		ENDIF
>>	ENDDO
>>ENDIF
>>
>
>An additional reference How can I release all open forms FAQ #7975

Ahhhh...... more great help!!!!

Thanks!!
Tommy Tillman A+ NetWork+ MCP
Previous
Reply
Map
View

Click here to load this message in the networking platform