HELP - Un-Handled Error Message prior to 'Sub Main'

F

Fred Gravel

I have a Windows app that I have installed on 3 client machines (all
win2k) thatreturn an un-handled error message when starting up.

I have placed 'Try/Catch/Finally' blocks in the 'sub main' and it
doesn't even get to there. Problem is the application works fine on my
development PC.

I have MDAC v2.8 and Framework 1.1 on all machines. I have cross
checked all of the .dll versions and verified that they are the same as
the ones on my machine

What runs BEFORE sub main ?
 
V

Victor Urnyshev [MSFT]

Hi Fred,

Static variables can be initialized before Sub Main gets executed. If an
application crashes due to exception, you should be able to get the
exception description and call stack. Call stack should be a good source of
the information where the application crashed.

--
Victor Urnyshev [MSFT]
This post is "AS IS" with no warranties, and confers no rights.
--------------------
|From: "Fred Gravel" <[email protected]>
|Subject: HELP - Un-Handled Error Message prior to 'Sub Main'
|User-Agent: XanaNews/1.16.3.1
|MIME-Version: 1.0
|Content-Type: text/plain; charset=iso-8859-1
|Message-ID: <[email protected]>
|Newsgroups: microsoft.public.dotnet.general
|Date: Wed, 25 Aug 2004 06:31:27 -0700
|NNTP-Posting-Host: mail1.city.lethbridge.ab.ca 198.161.86.10
|Lines: 1
|Path:
cpmsftngxa10.phx.gbl!TK2MSFTNGXA01.phx.gbl!cpmsftngxa06.phx.gbl!TK2MSFTNGP08
.phx.gbl!TK2MSFTNGP10.phx.gbl
|Xref: cpmsftngxa10.phx.gbl microsoft.public.dotnet.general:143569
|X-Tomcat-NG: microsoft.public.dotnet.general
|
|I have a Windows app that I have installed on 3 client machines (all
|win2k) thatreturn an un-handled error message when starting up.
|
|I have placed 'Try/Catch/Finally' blocks in the 'sub main' and it
|doesn't even get to there. Problem is the application works fine on my
|development PC.
|
|I have MDAC v2.8 and Framework 1.1 on all machines. I have cross
|checked all of the .dll versions and verified that they are the same as
|the ones on my machine
|
|What runs BEFORE sub main ?
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top