473,770 Members | 2,113 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

application has generated an exception that could not be handled in VB.NET

This applicaiton was originally developed in VB 6. I converted it to
VB.NET using .NETs own conversion utilities. It runs fine on the
machine with the .NET development environment. However, why I put the
executable on a machine with MDAC 2.8 and .NET 1.1, I receive the
afformentioned error.

I have try/catch blocks in the primary forms load event. The one
statement within the catch/end section is to display the error. This
code does not get executed.
Try
.... code here
Catch ex As Exception
' never gets executed
MsgBox("Here is the error:" & vbCrLf & ex.Message)
End Try

I even put a message box as the first line in the starting forms load
event and it too does not get executed either.

I do not know how to execute any other type of error dumping or
tracing from the machine where the error occurs, but I am willing to
try anything.

Please help.

Daniel
Nov 20 '05 #1
4 1475
Hi,

What version of VS.Net are you using? If you're using 2002, you'll need to
have, iirc, .Net framework 1.0 installed as only version 2003 programs use
version 1.1 of the framework.

HTH,

Jevon
"RDKram" <kr*******@wi.r r.com> wrote in message
news:35******** *************** ***@posting.goo gle.com...
This applicaiton was originally developed in VB 6. I converted it to
VB.NET using .NETs own conversion utilities. It runs fine on the
machine with the .NET development environment. However, why I put the
executable on a machine with MDAC 2.8 and .NET 1.1, I receive the
afformentioned error.

I have try/catch blocks in the primary forms load event. The one
statement within the catch/end section is to display the error. This
code does not get executed.
Try
... code here
Catch ex As Exception
' never gets executed
MsgBox("Here is the error:" & vbCrLf & ex.Message)
End Try

I even put a message box as the first line in the starting forms load
event and it too does not get executed either.

I do not know how to execute any other type of error dumping or
tracing from the machine where the error occurs, but I am willing to
try anything.

Please help.

Daniel

Nov 20 '05 #2
Jevon,
You may want to review the info at:

http://msdn.microsoft.com/library/de...dexsidenet.asp

Which gives directions on how 1.0 programs can run on the 1.1 framework!
Also how 1.1 programs can run on 1.0 framework.

Hope this helps
Jay

"Jevon Farr" <pl****@ask.m e> wrote in message
news:%2******** **********@TK2M SFTNGP10.phx.gb l...
Hi,

What version of VS.Net are you using? If you're using 2002, you'll need to
have, iirc, .Net framework 1.0 installed as only version 2003 programs use
version 1.1 of the framework.

HTH,

Jevon
"RDKram" <kr*******@wi.r r.com> wrote in message
news:35******** *************** ***@posting.goo gle.com...
This applicaiton was originally developed in VB 6. I converted it to
VB.NET using .NETs own conversion utilities. It runs fine on the
machine with the .NET development environment. However, why I put the
executable on a machine with MDAC 2.8 and .NET 1.1, I receive the
afformentioned error.

I have try/catch blocks in the primary forms load event. The one
statement within the catch/end section is to display the error. This
code does not get executed.
Try
... code here
Catch ex As Exception
' never gets executed
MsgBox("Here is the error:" & vbCrLf & ex.Message)
End Try

I even put a message box as the first line in the starting forms load
event and it too does not get executed either.

I do not know how to execute any other type of error dumping or
tracing from the machine where the error occurs, but I am willing to
try anything.

Please help.

Daniel


Nov 20 '05 #3
Daniel,
Which version of the framework did you use to develop the app?

The following web site identifies how to ensure that a 1.0 app will run on
the 1.1 framework & a 1.1 app will run on the 1.0 framework.

http://msdn.microsoft.com/library/de...dexsidenet.asp

Also seeing as you upgraded your app from VB6. Did you create a setup
package to deploy your app, or did you simply copy the executable? I suspect
you are missing the Microsoft.Visua lBasic.Compatib ility assembly. This
assembly is used by the upgrade wizard, you are free to deploy it with your
app, however it is not installed as part of the Framework itself. I would
recommend using a setup package to deploy your app &
Microsoft.Visua lBasic.Compatib ility initially, which would allow you to
install Microsoft.Visua lBasic.Compatib ility to the GAC.

http://msdn.microsoft.com/library/de...itylibrary.asp

http://msdn.microsoft.com/library/de...ereference.asp

Hope this helps
Jay

"RDKram" <kr*******@wi.r r.com> wrote in message
news:35******** *************** ***@posting.goo gle.com...
This applicaiton was originally developed in VB 6. I converted it to
VB.NET using .NETs own conversion utilities. It runs fine on the
machine with the .NET development environment. However, why I put the
executable on a machine with MDAC 2.8 and .NET 1.1, I receive the
afformentioned error.

I have try/catch blocks in the primary forms load event. The one
statement within the catch/end section is to display the error. This
code does not get executed.
Try
... code here
Catch ex As Exception
' never gets executed
MsgBox("Here is the error:" & vbCrLf & ex.Message)
End Try

I even put a message box as the first line in the starting forms load
event and it too does not get executed either.

I do not know how to execute any other type of error dumping or
tracing from the machine where the error occurs, but I am willing to
try anything.

Please help.

Daniel

Nov 20 '05 #4
Hi Jay,

Thanks for the info, I'll have a read.

Jevon
"Jay B. Harlow [MVP - Outlook]" <Ja************ @msn.com> wrote in message
news:Oe******** *****@TK2MSFTNG P12.phx.gbl...
Jevon,
You may want to review the info at:

http://msdn.microsoft.com/library/de...dexsidenet.asp
Which gives directions on how 1.0 programs can run on the 1.1 framework!
Also how 1.1 programs can run on 1.0 framework.

Hope this helps
Jay

"Jevon Farr" <pl****@ask.m e> wrote in message
news:%2******** **********@TK2M SFTNGP10.phx.gb l...
Hi,

What version of VS.Net are you using? If you're using 2002, you'll need to have, iirc, .Net framework 1.0 installed as only version 2003 programs use version 1.1 of the framework.

HTH,

Jevon
"RDKram" <kr*******@wi.r r.com> wrote in message
news:35******** *************** ***@posting.goo gle.com...
This applicaiton was originally developed in VB 6. I converted it to
VB.NET using .NETs own conversion utilities. It runs fine on the
machine with the .NET development environment. However, why I put the
executable on a machine with MDAC 2.8 and .NET 1.1, I receive the
afformentioned error.

I have try/catch blocks in the primary forms load event. The one
statement within the catch/end section is to display the error. This
code does not get executed.
Try
... code here
Catch ex As Exception
' never gets executed
MsgBox("Here is the error:" & vbCrLf & ex.Message)
End Try

I even put a message box as the first line in the starting forms load
event and it too does not get executed either.

I do not know how to execute any other type of error dumping or
tracing from the machine where the error occurs, but I am willing to
try anything.

Please help.

Daniel



Nov 20 '05 #5

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

Similar topics

2
2150
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
2638
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
1566
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.
4
10770
by: rs | last post by:
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
2
2151
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
2913
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
9618
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...
0
9454
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10101
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10038
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
8933
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
7456
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
6712
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
5354
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...
1
4007
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

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.