(05-23-2024, 04:26 AM)DSMan195276 Wrote: I would agree that the file input like that is likely to cause problems, files really aren't made for that kind of task. Your best QB64 option would be a TCP/IP connection between the two programs, which overall is fairly easy to implement. If you have the main program start the mouse program then you can even pass the connection details as an argument to avoid hard-coding them between the programs.Thanks for your reply - those examples are nice and short, I look forward to giving them a try.
...
Using a "pipe" is another option, but those aren't exposed in QB64 so it would be a bit more complex.
By "pipe" do you mean one prog calling another with command line args, or something else, like a program sending args to a different application already running?
Thanks again!