Hi,
I wish to create a very simple GUI for my C++ code
I have written a simple C++ program using Microsoft Visual C++ Express. The details of the program functionality are not really important. Currently the user enters a number (1-5) on the command line and presses enter. A few lines of C++ code are executed depending on which number is entered.
It is a fairly simple program. I would really like to make a simple GUI for this program. It would just need to be 5 buttons. If the user clicked on a button, the corresponding code would be executed.
This would be much more user friendly than a command line interface.
Ideally, I would also like to be able to create an executable file (.exe) that I could move to another computer and run.
Can anyone give me a starting point on how I should do this? I imagine this must be the simplest kind of GUI, and relatively simple to accomplish.
Thanks,
aallan