473,398 Members | 2,404 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

"Cannot Quit" error in application when shutting down WinNT 4.0

BJ
The application I have been developing is great except one flaw. When
Windows NT shuts down, it doesn't send the Event to my application (if it
did, it would close all of the open forms and kill an activity flag I create
on launch) and an error comes up that says "Cannot Quit". I have no idea
where this error is coming from as I did put it in there.

I am unsure if this is because of the hidden form which has a bunch of
timers on it (I made it visible and it still did not work) or because my
primary form was orginally programmed with VBA and I don't have the time to
rewrite it in full VB (several thousand lines of code). I use a ton of APIs
for my application to do its work, but the most used is the rasapi32.dll (to
check for any connections), kernal32 (for drive data and process handling)
and mpr.dll (for mapped drives management). imcp.dll, advapi.dll and
wsock32.dll are also used infrequently. The primary form and the timer form
(which is in full VB) are the only two forms consistently loaded. I have no
errors if the program is shutdown via any other method (process kill, normal
shutdown, automated shutdown, etc). I am using Visual Basic 6.0 SP5.

I am at a loss on this and would appreciate any feedback you can provide.
The program code itself is quite long and since it is work-for-hire, I
cannot post the code. My email is lt*******@SPAMcox.net - just remove the
ANTI and the SPAM.

Thank you,
BJ
Jul 17 '05 #1
5 5033
I have an incredibly complicated App

Parts are written in VBA
Other bits are written in VB
It makes extensive use of the API
- and lots of Timers
.... but there is something wrong ...

Are there any psychics out there ?
On Thu, 2 Oct 2003 03:40:15 -0700, "BJ" <lt*******@SPAMcox.net> wrote:
The application I have been developing is great except one flaw. When
Windows NT shuts down, it doesn't send the Event to my application (if it
did, it would close all of the open forms and kill an activity flag I create
on launch) and an error comes up that says "Cannot Quit". I have no idea
where this error is coming from as I did put it in there.

I am unsure if this is because of the hidden form which has a bunch of
timers on it (I made it visible and it still did not work) or because my
primary form was orginally programmed with VBA and I don't have the time to
rewrite it in full VB (several thousand lines of code). I use a ton of APIs
for my application to do its work, but the most used is the rasapi32.dll (to
check for any connections), kernal32 (for drive data and process handling)
and mpr.dll (for mapped drives management). imcp.dll, advapi.dll and
wsock32.dll are also used infrequently. The primary form and the timer form
(which is in full VB) are the only two forms consistently loaded. I have no
errors if the program is shutdown via any other method (process kill, normal
shutdown, automated shutdown, etc). I am using Visual Basic 6.0 SP5.

I am at a loss on this and would appreciate any feedback you can provide.
The program code itself is quite long and since it is work-for-hire, I
cannot post the code. My email is lt*******@SPAMcox.net - just remove the
ANTI and the SPAM.

Thank you,
BJ


Jul 17 '05 #2
BJ
Despite the complexity of the application, I assure you my only error and
issue is when Windows NT shuts down. Otherwise, the program works without
any problems or errors.

My goal in asking this group is to see if anyone knows what would cause the
message "Cannot Quit". Something had to pop that message up, be it the VB
runtime libraries or the APIs.

Thanks,
BJ

"J French" <er*****@nowhere.com> wrote in message
news:3f***************@news.btclick.com...
I have an incredibly complicated App

Parts are written in VBA
Other bits are written in VB
It makes extensive use of the API
- and lots of Timers
... but there is something wrong ...

Are there any psychics out there ?
On Thu, 2 Oct 2003 03:40:15 -0700, "BJ" <lt*******@SPAMcox.net> wrote:
The application I have been developing is great except one flaw. When
Windows NT shuts down, it doesn't send the Event to my application (if it
did, it would close all of the open forms and kill an activity flag I createon launch) and an error comes up that says "Cannot Quit". I have no idea
where this error is coming from as I did put it in there.

I am unsure if this is because of the hidden form which has a bunch of
timers on it (I made it visible and it still did not work) or because my
primary form was orginally programmed with VBA and I don't have the time torewrite it in full VB (several thousand lines of code). I use a ton of APIsfor my application to do its work, but the most used is the rasapi32.dll (tocheck for any connections), kernal32 (for drive data and process handling)and mpr.dll (for mapped drives management). imcp.dll, advapi.dll and
wsock32.dll are also used infrequently. The primary form and the timer form(which is in full VB) are the only two forms consistently loaded. I have noerrors if the program is shutdown via any other method (process kill, normalshutdown, automated shutdown, etc). I am using Visual Basic 6.0 SP5.

I am at a loss on this and would appreciate any feedback you can provide.
The program code itself is quite long and since it is work-for-hire, I
cannot post the code. My email is lt*******@SPAMcox.net - just remove theANTI and the SPAM.

Thank you,
BJ

Jul 17 '05 #3
On Thu, 2 Oct 2003 04:26:15 -0700, "BJ" <lt*******@SPAMcox.net> wrote:
Despite the complexity of the application, I assure you my only error and
issue is when Windows NT shuts down. Otherwise, the program works without
any problems or errors.

My goal in asking this group is to see if anyone knows what would cause the
message "Cannot Quit". Something had to pop that message up, be it the VB
runtime libraries or the APIs.


More likely some 3rd party thing that you have inadvertantly
incorporated

Ill behaved - but informative
Jul 17 '05 #4

"BJ" <lt*******@SPAMcox.net> wrote in message
news:ngTeb.4881$hp5.628@fed1read04...
The application I have been developing is great except one flaw. When
Windows NT shuts down, it doesn't send the Event to my application (if it
did, it would close all of the open forms and kill an activity flag I create on launch) and an error comes up that says "Cannot Quit". I have no idea
where this error is coming from as I did put it in there.

I am unsure if this is because of the hidden form which has a bunch of
timers on it (I made it visible and it still did not work) or because my
primary form was orginally programmed with VBA and I don't have the time to rewrite it in full VB (several thousand lines of code). I use a ton of APIs for my application to do its work, but the most used is the rasapi32.dll (to check for any connections), kernal32 (for drive data and process handling)
and mpr.dll (for mapped drives management). imcp.dll, advapi.dll and
wsock32.dll are also used infrequently. The primary form and the timer form (which is in full VB) are the only two forms consistently loaded. I have no errors if the program is shutdown via any other method (process kill, normal shutdown, automated shutdown, etc). I am using Visual Basic 6.0 SP5.

I am at a loss on this and would appreciate any feedback you can provide.
The program code itself is quite long and since it is work-for-hire, I
cannot post the code. My email is lt*******@SPAMcox.net - just remove the
ANTI and the SPAM.

Thank you,
BJ


If you're using Office automation this is kinda infamous problem especially
if you have hidden forms.

Check your code for automation object declaration. Declare each object as a
new variable.

On your query unload, bring out invisible objects, release the objects
properly and set things to nothing to make sure things are clean..
Jul 17 '05 #5
comments inline:

"BJ" <lt*******@SPAMcox.net> wrote in message
news:ngTeb.4881$hp5.628@fed1read04...
The application I have been developing is great except one flaw. When
Windows NT shuts down, it doesn't send the Event to my application
Hard to believe. Can you put msgbox code in there for testing purposes, and be
certain about it? Put one in the QueryUnload event of every form.
(if it
did, it would close all of the open forms and kill an activity flag I create
on launch)
When you think your program has closed all of its forms, have it check the value
of Forms.Count.
and an error comes up that says "Cannot Quit". I have no idea
where this error is coming from as I did put it in there.


I'm pretty sure that is Windows itself (or Windows Explorer, if you like).

Jul 17 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Chris | last post by:
I built small C# Web and Web Service applications in a training class last week. The applications worked in the class, but when I tried to run them again over the weekend, they both bombed....
5
by: Francis Shanahan | last post by:
Folks, I have a base page which is the grand-daddy of all my pages. It inherits from System.UI.Web.Page From this I inherit a layout page. From this I inherit the individual pages themselves....
0
by: Mike Schnorr | last post by:
I have a ASP.Net application that uses assemblies from several other solutions. When testing the applications on my machine I build all the referenced assemblies using nmake. The latest assemblies...
0
by: Matt | last post by:
When I tried to close VS.NET, it has the following error dialog: "Microsoft Development Environment cannot shut down because a modal dialog is active. Close the active dialog and try again." ...
1
by: Mary Kerrigan | last post by:
I'm tearing out my freakin' hair on this one. Trying to deploy an ASP.NET site on a Windows 2000 Advanced Server. The framework v1.0.3705 was already installed, not by me. When I tried to get to...
0
by: Abhi | last post by:
The applicaiton through which the service is created, doesnt give that error. To check the exact issue, I tested with a service containing this block of code. The service gives the error when...
5
by: Chris Robb | last post by:
I'm having some really odd behavior with a PHP script. I have it populating an HTML select form with a for loop. When I try the years 2006 to 1900. I get the following error: PHP Warning: ...
7
by: Mathew Butler | last post by:
I'm investigating an issue I have when pulling data back from MS access I'm retrieving all rows from a column in a table of 5000 rows - accessing a column of type "memo" ( can be 65353 character...
0
by: Tom | last post by:
I have a .net v2 asp.net problem. I develop on my workstation and deploy to a production server. I use compile on demand, so no pre-compile is done. When I deploy, I first must move in my new or...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.