Click here to Skip to main content
15,868,141 members
Please Sign up or sign in to vote.
1.00/5 (4 votes)
See more:
i would really appriciate your links and tutors. i have most required knowledge of c++
but i want to know how to create an app. email me also !!!EMAIL ADDRESS REMOVED!!!

NEVER put your email address in a public forum unless you love to get tons and tone of spam.
Posted
Updated 24-Dec-15 9:31am
v2
Comments
Sergey Alexandrovich Kryukov 24-Dec-15 12:55pm    
Sorry, your request is far beyond the format of the forum. You just need to sit down and learn the basics of C++ and general programming. Continue your study until you know how to create an application. You should have learned it at the very beginning of learning.
—SA
Member 12227217 3-Jan-16 9:20am    
i already know the basics of C++ and still learning it Sir. I would love your help sir
Sergey Alexandrovich Kryukov 3-Jan-16 11:27am    
I just explained: this is not what we do in this forum. I advised on what you can do instead.
—SA
Member 12227217 7-Jan-16 11:28am    
understood
chandanadhikari 1-Jan-16 5:31am    
hi,
can you please elaborate more on your question .. like what type of application you want to make for example you want to make some command line utility or something with a graphical user interface . Kindly include such details so that people can guide you in the right direction. presently the question is pretty vague.

 
Share this answer
 
hi,
trying to reply based on your reply to my comment :
you need to make a series of decisions:

1). what exactly you want to make i.e. what purpose will your application serve ?
2). which platform you want to target : Linux or windows or any other ?
3). which library or framework do you wish to work with ?
4). what other tools will be needed like which IDE etc.

and last but not the least
5). how to find help ?

typically GUI applications are built with help of some library. These libraries ease up the task of creating user interface elements, coding the event handlers for the UI elements etc. etc.
Depending on whichever operating system you want to build your application for,
you will have to decide which library you want to use:
For Windows, the widely used library is provided by Microsoft : MFC[^]. This library is exclusive for windows.

There is another popular framework which can target both Windows and Linux : Qt[^]

The IDE of choice for MFC is Visual Studio. You can get a full featured version at Microsoft Visual Studio Community 2015 from Official Microsoft Download Center[^]( this will be big download maybe more than 7gb) OR a limited features trial version at Visual Studio Express[^](comparatively this is of a smaller download size but it will expire in 90 days)

Qt has its own Qt creator and IDE.

Irrespective of whichever os and library you choose, first go through the samples which are provided on the internet. These sample applications demonstrate the usage and scope of the various features of these libraries.

As to the final question, you need to learn how to use Google. Sites like CodeProject will be useful if you are making a project and got stuck somewhere.

kindly go through this link[^] before posting further questions.

Plenty of resources are available online, all you need to do is explore.
maybe you can start here[^]

hope this helps !!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900