vote up 0 vote down star

2 parts of the question I want to Develop Software for Windows (especially 7)

  1. What Language and knowledge Do i Need to know ?
  2. What Software should i use to develop them ?

Please answer the question w.r.t both stand alone binaries and perhaps the .NET arena too.

Does one need to code really deep or are there softwares that enable me to do point and click stuff and create something quick and fast.

How good a choice would python be, in which case what do i need to develop with python?

flag

5 Answers

vote up 4 vote down check

I suggest you learn C# and WPF. For that you will need Visual Studio.

link|flag
1  
+1 For suggesting .NET to get fast working GUI-based apps for windows platforms. WPF allows for modern graphics features. – galaktor Aug 22 at 8:09
vote up 2 vote down

You can use C# for developing a windows based application.

For that you can use Visual Studio IDE.

C# provides a large set of classes for interacting with the windows OS.

Edit:

If you are a newbie to the language then you can read tutorials and make a basic understanding and then keep on looking for projects.

link|flag
that means direct hard-coding? – OrangeRind Aug 22 at 7:51
Yes you have to hand code your application. – adamantium Aug 22 at 7:51
Are you looking for a library for doing the task? If you can explain what application you develop then it would be easier to help. – adamantium Aug 22 at 7:52
so that involves a study of the entire API and libraries. Anything easier? – OrangeRind Aug 22 at 7:53
basic applications like RSS readers, notepads, etc. things that are already there but just for the sake of learning how to do it for real – OrangeRind Aug 22 at 7:53
show 1 more comment
vote up 1 vote down

Microsoft Visual Studio Expression Edition are best tools to learn and FREE Windows Apps like Microsoft Visual C# 2008 Express Edition

Languages to learn C# for Front End

SQL for Backend

ADO.NET for Connectivity between these tow

link|flag
vote up 1 vote down

Note that if you're developing for Windows 7, then your users already have .NET 3.5 SP1. And your other users can obtain it easily (you can make a ClickOnce installer for your app in Visual Studio, which automatically configures the customer's machine with a minimal download).

Also it isn't quite true that there is a hard distinction between visual programming and "hard" progrmaming - most tools mix these techniques. In C# these days you probably want to learn WPF, where the layout of the UI is a lot like doing HTML to lay out a web page.

link|flag
so would it better (read easier and better) to develop in the .net part or simple c# would do (or am i mixing things)? – OrangeRind Aug 22 at 7:57
C# and VB.NET are languages for developing on the .NET runtime. WPF is a library for writing UI apps. WPF uses an XML-based language called XAML. So you do some coding in XAML to lay out the UI and some in C# or VB.NET to make the app. respond to input. – Earwicker Aug 22 at 8:05
vote up 0 vote down
  1. C#: I'm pretty sure you can use it for stand-alone applications as well
  2. Visual Studio: You might get some free visual studio express version somewhere, I even got one with a magazine.
link|flag
ya i can get VS through msdnaa. professional would do rite? – OrangeRind Aug 22 at 7:55
Absolutely, professional will do. – galaktor Aug 22 at 8:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.