At my company we have a really old program, maybe written in Delphi or something. We don't have the source code. The program works well, but we want to:
- Hide some features from the user.
- Prevent some actions, if the user doesn't have the right priviliges.
- Automate a sequence of actions inside the program, with a press of the button.
How could it be possible to write a wrapper program around this exisitng Windows application with GUI. Which:
- Hides the original underlaying programs GUI.
- Allows the user to control the underlaying program, but with our given rules.
The new program could be really simple, but I dont't know what are the right tools for this.