Filling out other application dialogs
-
O.K. need some directions on what to even call this function/call. what I need to do is call another application, and fill out the fields with my application. Part of an automation thing. In simple I wanted to call a simple .ini file, and have it use the information to fill out the dialog boxes in the other application. could any one point me to what to search for or any links that could help in this process? Note: NEWBEEE!!!!!!!:-D
-
O.K. need some directions on what to even call this function/call. what I need to do is call another application, and fill out the fields with my application. Part of an automation thing. In simple I wanted to call a simple .ini file, and have it use the information to fill out the dialog boxes in the other application. could any one point me to what to search for or any links that could help in this process? Note: NEWBEEE!!!!!!!:-D
You will to determine the window id of all the windows on the dialog you want to fill out and a handle to window you are filling out. Then simply use ::SetDlgItemText( hWnd, WindowId, "value" ); There was a password retival tool posted here, some of the code from it should help you to determine the window ids.
-
You will to determine the window id of all the windows on the dialog you want to fill out and a handle to window you are filling out. Then simply use ::SetDlgItemText( hWnd, WindowId, "value" ); There was a password retival tool posted here, some of the code from it should help you to determine the window ids.