|
-
March 22nd, 2001, 11:50 PM
#1
Firing an event
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
-
March 23rd, 2001, 12:14 AM
#2
Re: Firing an event
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.
-
March 23rd, 2001, 12:23 AM
#3
Re: Firing an event
Thank you for explaining my doubt
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
|