Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What IDE is needed to develop a first time simple Windows application?

Tags:

windows

ide

I have never done any Windows coding and I would like to give it a try. To create a simple application e.g. a window that displays a plain "Hello World" message.

What IDE (open source?) would I need to start of with and what language is used for the native Windows applications?

This is not for professional use, just for an amateur.

like image 700
mr-euro Avatar asked May 24 '09 20:05

mr-euro


People also ask

What IDE is used to develop Windows?

Visual Studio is an integrated development environment (IDE) from Microsoft. It is used to develop computer programs, as well as websites, web apps, web services and mobile apps.

What is IDE explain about starting the Visual C++ IDE?

An integrated development environment (IDE) is a feature-rich program that supports many aspects of software development. The Visual Studio IDE is a creative launching pad that you can use to edit, debug, and build code, and then publish an app.

What is Visual Studio used for?

Description: Microsoft Visual Studio is an integrated development environment (IDE) used to develop console and graphical user interface applications along with Windows Forms applications, ASP.NET applications, web sites, web applications, and web services using native code and managed code.


1 Answers

I'd recommend going for Visual Studio Express, you can use c#, Visual Basic (VB.NET) or c++, it's free and easy. It also makes the step to the larger Visual Studio simple if you're ever going to do that.

check out Microsoft Visual Studio Express

edit: added VB.NET

Since i'm editing anyway, how about some additions; If you prefer opensource you could also look into SharpDevelop (c# and boo) and/or monodevelop (c#, but better for linux/multiplatform, not so great for just windows imho but yout mileage may vary)

edit: 6 years later.

Microsoft has, in the mean time, provided us with Visual Studio Community Edition, which is in essence a complete Visual Studio professional, but free (some restrictions do apply). I do believe this is now the absolute best way to develop most non commercial, and possibly some commercial, Windows oriented projects you can get.

like image 155
Kris Avatar answered Sep 19 '22 14:09

Kris