Possible Duplicate:
Create event handler for OnScroll for web browser control
I would like to create an event handler for a web browser control scrolling.
webCompareSQL.Document.Window.Scroll
Can some one show me how to create an event handler?
I would like to create an event handler for a web browser control scrolling.
Can some one show me how to create an event handler? |
|||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
In the class you add a delegate and an event, and usually a simple internal method that checks for null and calls the event:
Then in the actual code you would register a method for the event using:
|
|||||
|