Link to home
Start Free TrialLog in
Avatar of tomazsr
tomazsr

asked on

SendKeys with external runing application

Hi,

I know how to run application and send key to it.

I want to know how to use sendkeys with external application?
How to activate external application window and how to send key stroke
to external application?

Thanks
Tomaz
Avatar of Bob Learned
Bob Learned
Flag of United States of America image

You can look at this article:

Launching and Monitoring External Programs from VB.NET Applications
http://www.projectcool.com/dotnet/Article/7914/0/page/5

Avatar of tomazsr
tomazsr

ASKER

My external application can not be run from NET application.
I want to activate already runing application and send key to it?

ASKER CERTIFIED SOLUTION
Avatar of Bob Learned
Bob Learned
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of tomazsr

ASKER


How to write AppActivate(allProcesses(0).Id) in C#?
Avatar of tomazsr

ASKER

I menage some how with::0))

[DllImport("User32.dll")]
static extern IntPtr FindWindow(string lpClassName, string lpWindowName);  
[DllImport("User32.dll")]
static extern int SetForegroundWindow(IntPtr hWnd);

IntPtr MyProgram =FindWindow(null,"Notepad");
SetForegroundWindow(MyProgram );
SendKeys.SendWait("Hello!");
My first question should always be ASP.NET, C#, or VB.NET?  

There is a C#-specific Topic Area.  If you post there, you would more than likely get code that is C#, and wouldn't have to be converted.

I am glad that you could find this on your own, since I don't know C# very well.
No comment has been added lately, so it's time to clean up this TA.
I will leave the following recommendation for this question in the Cleanup topic area:

Accept: TheLearnedOne {http:#9945184}

Please leave any comments here within the next seven days.
PLEASE DO NOT ACCEPT THIS COMMENT AS AN ANSWER!

TheLearnedOne
EE Cleanup Volunteer