Convert or Add?
-
I have built a program which generates a tree, and allows the user to perform searches for a number entered by the user. I want to display the tree in a graphical format as well as the available searches. How can I convert my program to an MFC application? Or what do I add? This project is a console application. I'm confused. thanks in advance. Star08
-
I have built a program which generates a tree, and allows the user to perform searches for a number entered by the user. I want to display the tree in a graphical format as well as the available searches. How can I convert my program to an MFC application? Or what do I add? This project is a console application. I'm confused. thanks in advance. Star08
Converting a console application to a GUI application is a little more involved than just changing compiler switches, or linking with different libraries. The whole UI will need to be redesigned. Your code to generate the tree should remain the same, unless you've done something to it that ties it to a console application. What exactly do want the GUI to look like?
"A good athlete is the result of a good and worthy opponent." - David Crow
"To have a respect for ourselves guides our morals; to have deference for others governs our manners." - Laurence Sterne
-
Converting a console application to a GUI application is a little more involved than just changing compiler switches, or linking with different libraries. The whole UI will need to be redesigned. Your code to generate the tree should remain the same, unless you've done something to it that ties it to a console application. What exactly do want the GUI to look like?
"A good athlete is the result of a good and worthy opponent." - David Crow
"To have a respect for ourselves guides our morals; to have deference for others governs our manners." - Laurence Sterne