-
Hi!
I'm getting nervous. I've got a programm in VB which uses MS Winsock component. And in some situations i get an error 126 from this ActiveX, but i don't know why this happens. I even didn't find the description of this error. Neihter in microsoft.com nor in other websites. And i've tried a lot of sites.
Thanks, Kirill.
-
Help!!!!!!!!!!!!
It's something stupid - very ordinary control, but no descriptions of its errorcodes :((((((((((
;o(
-
At an error handler to your crashing sub. Then you can get the description.
Code:
Sub DoSomething
On Error Goto ErrorHandler
'your code here
Exit Sub
ErrorHandler:
Msgbox Err.Description
End Sub
-
It doesn't help much :(
The description for this error is an empty string - I think sometimes MS makes very stupid things. But anyway thanks for your help.
Kirill.