Simulate a doubleclick on Internet trough VBA

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I wrote a macro using IE application. But I can't move on anymore.
A dynamic table is display on the web screen and the source code doesn't
give me any information about the form and fields name. Therefore, the only
way (I think) I have to access what I need is to :
- simulate a double click
- at a particular position (cursor) on the screen.
Does anybody can help ?
I also take all sample it could match with my issue !!
 
If you can get the hWnd (window handle) of the window you want to click then
it is simple with the SendMessage API. Don't need the screen
position for that. You can get the hWnd with the FindWindow API.
If you can't get the hWnd then you may be able to do it with the
MouseEventEx API.

RBS
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top