Errors!!!

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am getting this error when I try to enter a date or time into a text box on
my windows form. It was updated from vb 6 to dotnet. Any suggestios as to why
the error and how to fix it?

An unhandled exception of type 'System.Runtime.InteropServices.COMException'
occurred in microsoft.visualbasic.compatibility.data.dll

Additional information: Multiple-step operation generated errors. Check each
status value.
 
Hard to say, but the exception is thrown when? When you start typing, when
you submit the values entered, or...? If it is thrown when you submit the
entered data, it could very well have something to do with the format of the
date and time.
 
This error looks like and ADO error. Seems like there's something ado
;) with your recordset, I rember it to throw thoose kinds of errors around.

Did you use the VB6 conversion wizard to upgrade? I wouldn't use that if
I liked my job ;)
 
Yes, I used the conversion wizard to update.

Patrik Löwendahl said:
This error looks like and ADO error. Seems like there's something ado
;) with your recordset, I rember it to throw thoose kinds of errors around.

Did you use the VB6 conversion wizard to upgrade? I wouldn't use that if
I liked my job ;)

--
Patrik Löwendahl [C# MVP]
http://www.lowendahl.net/ || http://www.cshrp.net
Please reply only to the newsgroup.
I am getting this error when I try to enter a date or time into a text box on
my windows form. It was updated from vb 6 to dotnet. Any suggestios as to why
the error and how to fix it?

An unhandled exception of type 'System.Runtime.InteropServices.COMException'
occurred in microsoft.visualbasic.compatibility.data.dll

Additional information: Multiple-step operation generated errors. Check each
status value.
 
When I start typing.

CT said:
Hard to say, but the exception is thrown when? When you start typing, when
you submit the values entered, or...? If it is thrown when you submit the
entered data, it could very well have something to do with the format of the
date and time.
 
Back
Top