+ 1
Does anyone know how i can convert an existing c++ console app to a gui app using Qt on netbeans?
2 Answers
+ 1
You can find a basic example over here :
https://netbeans.org/kb/72/cnd/qt-applications.html
You just have to add input elements (text boxes) and buttons, then you call your functions when the button is pressed (to add an action to a button you just have to double click it in the visual GUI editor).
0
So you mean to say it is possible to convert lets say my ATM console application to a GUI just by adding textboxes and labels. So my question is how would i then go about it?