473,786 Members | 2,451 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

application has generated an exception that could not be handled

rs
Hi guys

Thank you in advance for the help. I developed a simple application
using vs.net 2003. running framework 1.1 sp1. the application runs fine
on the development machine (win xp). I tried to deploy it on a win 2000
sp4 framework 1.1 sp1. I got the following error

Reminder.exe - Common Language Runtime Debugging Services

application has generated an exception that could not be handled

process id = 0x530(1328), thread id 0x4ac(1196)

I have other .net application works fine on the same machine and they
where developed on the same xp machine as well.

the reminder program is basically a form with a 3D style label that
stays always on topm, topmost property enabled. It also that two
timers. one to have the color for the text switches from black red and
the other time to switch texts. I have 4 menu items, first one opens a
font dialog, senond one allows customizing the text, thrid item is to
switch always on top to not always on top. the last one opens an about
form. I am not using a main function. what I will try next is to have a
main function with try/catch blocks. I tried the full permission in the
..net configuaration. nogood.

any other suggestes??

Thanks

Nov 21 '05 #1
4 10770
http://msdn.microsoft.com/msdnmag/is...T/default.aspx

Greg

"rs" <ah*******@gmai l.com> wrote in message
news:11******** *************@f 14g2000cwb.goog legroups.com...
Hi guys

Thank you in advance for the help. I developed a simple application
using vs.net 2003. running framework 1.1 sp1. the application runs fine
on the development machine (win xp). I tried to deploy it on a win 2000
sp4 framework 1.1 sp1. I got the following error

Reminder.exe - Common Language Runtime Debugging Services

application has generated an exception that could not be handled

process id = 0x530(1328), thread id 0x4ac(1196)

I have other .net application works fine on the same machine and they
where developed on the same xp machine as well.

the reminder program is basically a form with a 3D style label that
stays always on topm, topmost property enabled. It also that two
timers. one to have the color for the text switches from black red and
the other time to switch texts. I have 4 menu items, first one opens a
font dialog, senond one allows customizing the text, thrid item is to
switch always on top to not always on top. the last one opens an about
form. I am not using a main function. what I will try next is to have a
main function with try/catch blocks. I tried the full permission in the
.net configuaration. nogood.

any other suggestes??

Thanks

Nov 21 '05 #2
rs,
In addition to the other comments.

Depending on the type of application you are creating, .NET has three
different global exception handlers.

For ASP.NET look at:
System.Web.Http Application.Err or event
Normally placed in your Global.asax file.

For console applications look at:
System.AppDomai n.UnhandledExce ption event
Use AddHandler in your Sub Main.

For Windows Forms look at:
System.Windows. Forms.Applicati on.ThreadExcept ion event
Use AddHandler in your Sub Main.

It can be beneficial to combine the above global handlers in your app, as
well as wrap your Sub Main in a try catch itself.

There is an article in the June 2004 MSDN Magazine that shows how to
implement the global exception handling in .NET that explains why & when you
use multiple of the above handlers...

http://msdn.microsoft.com/msdnmag/is...T/default.aspx

For example: In my Windows Forms apps I would have a handler attached to the
Application.Thr eadException event, plus a Try/Catch in my Main. The
Try/Catch in Main only catches exceptions if the constructor of the MainForm
raises an exception, the Application.Thr eadException handler will catch all
uncaught exceptions from any form/control event handlers.

Some useful articles on Exception handling:

http://www.codeproject.com/script/ar...?userid=450027

http://msdn.microsoft.com/library/de...ceptdotnet.asp
Hope this helps
Jay
"rs" <ah*******@gmai l.com> wrote in message
news:11******** *************@f 14g2000cwb.goog legroups.com...
Hi guys

Thank you in advance for the help. I developed a simple application
using vs.net 2003. running framework 1.1 sp1. the application runs fine
on the development machine (win xp). I tried to deploy it on a win 2000
sp4 framework 1.1 sp1. I got the following error

Reminder.exe - Common Language Runtime Debugging Services

application has generated an exception that could not be handled

process id = 0x530(1328), thread id 0x4ac(1196)

I have other .net application works fine on the same machine and they
where developed on the same xp machine as well.

the reminder program is basically a form with a 3D style label that
stays always on topm, topmost property enabled. It also that two
timers. one to have the color for the text switches from black red and
the other time to switch texts. I have 4 menu items, first one opens a
font dialog, senond one allows customizing the text, thrid item is to
switch always on top to not always on top. the last one opens an about
form. I am not using a main function. what I will try next is to have a
main function with try/catch blocks. I tried the full permission in the
.net configuaration. nogood.

any other suggestes??

Thanks

Nov 21 '05 #3
rs
Thanks for the input guys. I will try these suggestions when I get to
my machine. I will keep you updated.

Thanks again

Ahmed

Nov 21 '05 #4
rs
its really funny. I knew where the problem came from.
I had autoscale checked for the dynamic properties which added another file
called Reminder.exe webconfiguratio n file. i noticed that if i am dont have
that file in the same directory as my main reminder.exe i will get that
error.

Thanks guys for your input

Ahmed

"Jay B. Harlow [MVP - Outlook]" <Ja************ @msn.com> wrote in message
news:uw******** ********@TK2MSF TNGP11.phx.gbl. ..
rs,
In addition to the other comments.

Depending on the type of application you are creating, .NET has three
different global exception handlers.

For ASP.NET look at:
System.Web.Http Application.Err or event
Normally placed in your Global.asax file.

For console applications look at:
System.AppDomai n.UnhandledExce ption event
Use AddHandler in your Sub Main.

For Windows Forms look at:
System.Windows. Forms.Applicati on.ThreadExcept ion event
Use AddHandler in your Sub Main.

It can be beneficial to combine the above global handlers in your app, as
well as wrap your Sub Main in a try catch itself.

There is an article in the June 2004 MSDN Magazine that shows how to
implement the global exception handling in .NET that explains why & when
you
use multiple of the above handlers...

http://msdn.microsoft.com/msdnmag/is...T/default.aspx

For example: In my Windows Forms apps I would have a handler attached to
the
Application.Thr eadException event, plus a Try/Catch in my Main. The
Try/Catch in Main only catches exceptions if the constructor of the
MainForm
raises an exception, the Application.Thr eadException handler will catch
all
uncaught exceptions from any form/control event handlers.

Some useful articles on Exception handling:

http://www.codeproject.com/script/ar...?userid=450027

http://msdn.microsoft.com/library/de...ceptdotnet.asp
Hope this helps
Jay
"rs" <ah*******@gmai l.com> wrote in message
news:11******** *************@f 14g2000cwb.goog legroups.com...
Hi guys

Thank you in advance for the help. I developed a simple application
using vs.net 2003. running framework 1.1 sp1. the application runs fine
on the development machine (win xp). I tried to deploy it on a win 2000
sp4 framework 1.1 sp1. I got the following error

Reminder.exe - Common Language Runtime Debugging Services

application has generated an exception that could not be handled

process id = 0x530(1328), thread id 0x4ac(1196)

I have other .net application works fine on the same machine and they
where developed on the same xp machine as well.

the reminder program is basically a form with a 3D style label that
stays always on topm, topmost property enabled. It also that two
timers. one to have the color for the text switches from black red and
the other time to switch texts. I have 4 menu items, first one opens a
font dialog, senond one allows customizing the text, thrid item is to
switch always on top to not always on top. the last one opens an about
form. I am not using a main function. what I will try next is to have a
main function with try/catch blocks. I tried the full permission in the
.net configuaration. nogood.

any other suggestes??

Thanks


Nov 21 '05 #5

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

Similar topics

2
2151
by: Alexey Kouzmitch | last post by:
Hi, I wrote a console application which is called from a SQL Server job. The application utilizes a COM object, to pump data from a legacy (not very old however) application to SQL server. The application works fine, but once in a while it fails with the following message written to the event log: ----------------------------------------------------------------------- The description for Event ID ( 0 ) in Source ( .NET Runtime )...
1
2639
by: Jim | last post by:
I built my Assemblies and created the .MSI file for installation. I've installed it with no problems on my XP & 2K machines. But a friend of mine who is running 2K gets this message when trying to run my app: ----------------------------------------------------------------- Common Language Runtime Debugging Services Application has generated an exception that could not be handled. Process id=0x760(1888), Thread id=0x128(296)...
5
770
by: Skylar Challand | last post by:
I am getting the following message on a Windows XP computer when trying to run a VB program. The same program is installed on 8 different computers without any issues. .NET Framework is installed & app was installed using the installer that comes with Visual Studio .NET. The application uses an ODBC connection to an access database, which should have installed with the installer as well as Crystal Reports, which also is installed with the...
5
488
by: Bob L. | last post by:
Hi everyone, I have two small applications I have written that I am trying run from a network directory. Both applications have a dependency on another assembly (.dll), and I have .NET security wide open. One application is dependent on an interop assembly (Interop.IWshRuntimeLibrary.dll), and it works fine. The other application depends on three assemblies that I have written, and although the executable starts successfully, as soon as...
5
2382
by: | last post by:
I've created a small vb.net application which uses the Data Access Application Block to access a SQL Server 2000 database. The application works fine on the machine with the development environment (Windows 2K) but I am unable to get it to work on two other machines (Windows XP machines). When I try running the application on these machines I get a message box, after some delay, that says "Application has generated an exception that could...
2
1567
by: scorpion53061 | last post by:
This app I am working on generated an exception but I have only found it on his laptop. Other machines do not seem to have this issue. The exception is normally according to what I have seen on the net an ASP.NET exception. So why it is happening in Windows is a mystery to me.
2
2152
by: Murthy | last post by:
Hi, After genarating the exe when i run the exe the following error is comming. Common Language Runtime Debugging Services Application has generated an exception that could not be handled. Process id=0xdec (3564), Thread id=0xdf0 (3568) When I click CANCEL to debug, I get this error-message:
4
40924
by: kd | last post by:
Hi All, I have an exe, developed in vb.net (on XP Professional). I have copied the exe to another system, which is also an XP Professional system. I have installed MDAC 2.8. the .NET framework 1.1 and .NET framework 1.1 SP1. I am getting the following error reported by Common language runtime debugging services: Application has generated an exception that could not be handled. Process id=0x234(584) Thread id=0x404(1028). Click OK to...
1
2914
by: Vijaykumar Gaikwad | last post by:
While running application in user's machine i am getting error message i.e. Application has generated an exception that could not be handled. process id=0x1sec (492), Thread id =0xa04 (2564). Click ok to terminate the application click cancel to debug the application. While running on my machine and some of the users machine it's running fine.Framework installed is same on all the machines. So i don't understand what may be the reason. Could...
0
9647
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
1
10108
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8988
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7510
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6744
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5397
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5532
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4064
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3668
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.