How can i fire an event from another event handling function.
eg: i want to invoke the command1_click() from winsock1_dataarrival()
can you help me??
Thank you
Printable View
How can i fire an event from another event handling function.
eg: i want to invoke the command1_click() from winsock1_dataarrival()
can you help me??
Thank you
In the winsock1_dataarrival() event just call the event the same way you would any other method.
eg.
Private Sub WinSock1_DataArrival()
Call Command1_Click
End Sub
Hope this helps,
Nathan.
Thank you for explaining my doubt