If I have two applications running simultaneously , App1.exe and App2.exe , I want to bring App2.exe when a button in App1.exe is pressed.
If I have two applications running simultaneously , App1.exe and App2.exe , I want
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use FindWindow to retrieve the window-handle of your app2.exe window and then use BringWindowToTop on that handle.
You can find an (VB) example here: http://support.microsoft.com/kb/186431