I run an assembly line at work that I'm trying to automate. The current software is two stand alone excitable. One is an editor that adds the variables to an sql database and the second reads that database and controls the cnc. Both are on the same pc, running at the same time and both are written in vb6. When you hit the 'add' button in the first .exe (editor) it somehow tells the second .exe to reload the sql database and load any updates.
My problem is I've written a software that takes the barcode and inserts the variables into the database automatically which will bypass the first software but the second software doesn't know when to revisit the database for updates.
Are there any common ways for one .exe to talk to a second .exe and how do I listen so I can duplicate it? Thanks Sam
EDIT : sorry what i meant by 'bypass' is make the first .exe redundant. My software inserts in to the sql rather then their editor software.