Hi,
I've taken a few C programming classes, and have used it on my own a fair amount. So far, everything I have done has revolved around the command prompt.
Is there an easy way to add an interface with buttons and input/output boxes for a given program?
I'd like to learn as little new programming as possible to accomplish this.
Thanks,
Me
5 replies to this topic
#1
Posted 03 November 2010 - 09:25 PM
|
|
|
#2
Posted 03 November 2010 - 11:11 PM
You can download Visual C++ express edition, Visual C++ is Microsoft's version of C++ with simple GUI workings, there should be a drag and drop form generator for it.
Be sure to read the updated FAQ! || Health is achieved through the same 10,000 steps.
If a suggested code/method fails, informing us is less important than telling us why or what errors occurred.
If a suggested code/method fails, informing us is less important than telling us why or what errors occurred.
#3
Posted 04 November 2010 - 12:01 AM
Hi,
You can use Microsoft Visual Studio to make GUI program. I'd suggest you to start looking at how to MFC Dialog Box and using controls on it. You can find a detail over
Visual C++ MFC Controls: Dialog Boxes
This is detailed description on how to create MFC Dialog Application.
I hope this would help!
Munir
You can use Microsoft Visual Studio to make GUI program. I'd suggest you to start looking at how to MFC Dialog Box and using controls on it. You can find a detail over
Visual C++ MFC Controls: Dialog Boxes
This is detailed description on how to create MFC Dialog Application.
I hope this would help!
Munir
#4
Posted 04 November 2010 - 05:48 PM
It seems like you need to know object oriented programming to use the GUI tools that come with visual studio.
Is there a way to create interfaces using only C programming?
Is there a way to create interfaces using only C programming?
#5
Posted 04 November 2010 - 06:13 PM
Nukey said:
Is there a way to create interfaces using only C programming?
Procedural GUI development is somewhat backwards, you will not find any modern one that will work with prure C, especially Windows interfaces as MFC/.NET use objects natively.
Be sure to read the updated FAQ! || Health is achieved through the same 10,000 steps.
If a suggested code/method fails, informing us is less important than telling us why or what errors occurred.
If a suggested code/method fails, informing us is less important than telling us why or what errors occurred.
#6
Posted 05 November 2010 - 04:07 AM
I guess there is a way to do it, everything(IMO) is possible. But I'm not sure how effective it will be. I just(temporarily) switched to C++ because of that exact reason - I wanted to program an IDE using Windows Forms.
Just use Microsoft's Visual C++.
Just use Microsoft's Visual C++.

There is no problem that cannot be solved by the use of high explosives.
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users


Sign In
Create Account

Back to top









