I'm trying to write a vb.net program to assist in updating our programs from V3.5MR2 to 2010MR3 and standardizing probe names. I have my program doing most of what I want except when executing the program most programs have operator inputs and I can't get past them without manual intervention. I can set the values in my vb.net program using .CommentCommand.Input but how do I either get it to not prompt for the input or "click ok" on the dialog? I'm using .ActivePartProgram.EXECUTE. Should I be using something else?
Check out SendKeys() which allows you to "emulate" keypresses from a keyboard. Sending TAB should move your selection/focus so you should be able to "move" and select textboxes/buttons for input/click without using the mouse.
Check out SendKeys() which allows you to "emulate" keypresses from a keyboard. Sending TAB should move your selection/focus so you should be able to "move" and select textboxes/buttons for input/click without using the mouse.