Hello!
I'm currently trying to fill in a dialogue box (from an external program) using a VB.Net app. I've succeeded in finding the window handle for the external program (using the FindWindowByCap tion function), but am having some difficulty finding the handles for the child windows (which, in this case, would be text boxes). Most tutorials that I've found online suggest using Spy ++ (or other programs) that I don't have access to on this computer. Is there a programmatic way to step through the child windows until I find one with a certain class or name?
Once I have window handles for the child windows, I should be ready to go, as I'm planning on using the SendMessage function.
Does anyone have any ideas about how best to accomplish my task?
Thanks,
-cj
I'm currently trying to fill in a dialogue box (from an external program) using a VB.Net app. I've succeeded in finding the window handle for the external program (using the FindWindowByCap tion function), but am having some difficulty finding the handles for the child windows (which, in this case, would be text boxes). Most tutorials that I've found online suggest using Spy ++ (or other programs) that I don't have access to on this computer. Is there a programmatic way to step through the child windows until I find one with a certain class or name?
Once I have window handles for the child windows, I should be ready to go, as I'm planning on using the SendMessage function.
Does anyone have any ideas about how best to accomplish my task?
Thanks,
-cj
Comment