R
RDKram
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
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