Handle of a control in a web page
-
Hi ! I want to get handle of a control in a web page. I used WindowFromPoint function but I am getting the handle to the container of that control. I want to know how the events get generated inside a web page and how the controls in the page (like command buttons, combo boxes, etc.,) are identified. If I want to manipulate those controls from out side the browser, is it possible? (like normal window and all it's controls could be mainipulated from out side the application). Thanks in advance... John
-
Hi ! I want to get handle of a control in a web page. I used WindowFromPoint function but I am getting the handle to the container of that control. I want to know how the events get generated inside a web page and how the controls in the page (like command buttons, combo boxes, etc.,) are identified. If I want to manipulate those controls from out side the browser, is it possible? (like normal window and all it's controls could be mainipulated from out side the application). Thanks in advance... John
In Internet Explorer you cannot get it. Since the whole container is a single window, you will only get the handle of the container. But you can get in netscape navigator, since they implement as a normal windows program and then create controls on runtime! SO it will work in netscape, but not in IE. Regards Ravi