Hello,
I'm working on a program for a friend which has to access menus to get a form. I can't fingd a way to do it
Please Help me !!!
JD
Printable View
Hello,
I'm working on a program for a friend which has to access menus to get a form. I can't fingd a way to do it
Please Help me !!!
JD
What menus have to be accessed?
I need to access the yahoo messenger menus
When I was working with accessing the menu's of other programs, I used Spy++. Monitor the window with the menu for all wm_command messages. When one is executed, it will give you the parameter. Then to execute it(as if the user selected it), you use:
Unforunately, this is the c++ code I used. I was unable to find anything for making a wparam in vb. If you find one, I'd like to know. I found it was much easier to use c++ for interacting with other applications if you are using straight api and then designing a vb front end that shells the program if necessary. Hope this helps.Code:PostMessage(arrays[0], WM_COMMAND, MAKEWPARAM((0, spyValue), 0), 0) ;
Joe