I need to send a input value(string
) to another application which runs on Citrix which is currently on foreground(Active window)
I have tried below links
How do I get the title of the current active window using c#?
How to send a string to other application including Microsoft Word
I can't understand how to use SendMessage or PostMessage calls
copy and paste option- but this did not work either
tried the input simulator
In 5th option ,the 2 nd suggested answer stated to update/modify the Inputsimulator application class but i added a nuget package in my application. so, how do i update it accordingly.
below is the code using Input simulator
string co = "This is a test° This is a test° This is a test° This is a test°This is a test°This is a test°";
WindowsInput.InputSimulator cc = new WindowsInput.InputSimulator();
cc.Keyboard.TextEntry(co);
how can i send a string to citrix application?