developing a windows app [closed]
I w开发者_JS百科ant to develop an app for windows that will end up being an exe file and have an installation process. However, I dont know where to start or which steps to follow. What is the best language to use and how do I endup having an exe file ?
Probably your easiest approach is to download MS Visual Studio Express for C#. If you want a GUI app then use the WinForms framework.
I don't know if you know programming, but, I'll assume you don't.
Basically, to make a GUI (graphical user interface) application for Windows, you must use the Win32 API or something built "on top" (i.e. abstracts from) of it.
You can do this with C++ directly or with .NET (a thing that makes life easier for you).
For .NET, you can use multiple languages, such as Visual Basic and C#, I recommend you start with C# and then go from there.
精彩评论