|
-
Oct 6th, 2000, 07:33 AM
#1
Thread Starter
New Member
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.
-
Oct 6th, 2000, 07:52 AM
#2
Thread Starter
New Member
Help!!!!!!!!!!!!
It's something stupid - very ordinary control, but no descriptions of its errorcodes (((((((((
;o(
-
Oct 6th, 2000, 09:35 AM
#3
Fanatic Member
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
-
Oct 6th, 2000, 09:43 AM
#4
Thread Starter
New Member
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|