I was trying to figure out how I can send a keystroke to another computer. All I see help for is how to send it to another application.
can you output to the keyboard usb port?
I was trying to figure out how I can send a keystroke to another computer. All I see help for is how to send it to another application.
can you output to the keyboard usb port?
It is not possible to send keystrokes directly to another computer but..
You can write a software which establishes a connection between this two computers.
I would prefer a communication over TCP/IP (delphi has some ready to use components for that)
Alternatively you could use communication over file transfer. For programmer beginners this is not a very difficult task. Create on each computer a network share called "inbox" Now you can write from each application to the share of your destination computer your message files. On the destination computer your software would read those files (containing your keystrokes)
These are just two possible solutions for your very vague described problems.