I have VB6 program talking to several remote dumb terminals via a winsock connection. I would like to setup an error event trap but so far have not been able to do so. No matter how is configure the trapping routine, the compiler returns the following error:
"Procedure does not match description of event or procedure having the same name."
I have tried:
private sub winsock1(index)_error(number ......
private sub winsock1_error(index as integer, number.......
private sub winsock1_error(number ........
There seems to be no method of getting the array element included in the trap.
"Procedure does not match description of event or procedure having the same name."
I have tried:
private sub winsock1(index)_error(number ......
private sub winsock1_error(index as integer, number.......
private sub winsock1_error(number ........
There seems to be no method of getting the array element included in the trap.