What is the easyest programming language?

I am trying to choose a language for making software on windows. What would you recomend?
50,950 views 20 replies
Reply #1 Top
DesktopX
Reply #2 Top
no, Something to make a program like a notepad replacement.
Reply #3 Top
You can do that in DX
Reply #4 Top
really? Well is there a lang that makes normal windows programs?
Reply #5 Top
I think HTML was the easiest for me to learn...   But then again its not for Win32 programs.
Reply #7 Top
.NET -- Simple enough to find plenty of documentation and powerful enough to do pretty much anything in the Windows Environment.
Reply #8 Top
ok, i will choose vb.net.
Reply #9 Top
HTML is not a programming language, it's a markup language, which is very very different.  It's manually defining display format, not actually coding and compiling an application.

.NET is good and it gives you the options of both VB and C#, so depending on how your brain works, you've got some choice.  Personally, I'm OKish with C syntax code, but can't understand BASIC code to save my life.  It just doesn't click in my head.  However, Visual Basic is most often recommended as the best beginner language since it is more "plain english" to to speak.

.NET also lets you build both web applications (such as these fine forums you see here) as well as stand-alone Win32 apps.  Lots of versatility.
Reply #11 Top
Visual Basic is my choice.
Reply #12 Top
I am trying to choose a language for making software on windows.


It's not usually the language (or more correctly the Syntax) that's the hard part to learn... it's usually getting your mind around all of the available functions i.e what they do, how to call them, which one to use and when etc, etc. This is in-turn dependant on the operating environment (in this case Windows).

The syntaxes between languages all have similar ways of achieving the same goal and I wouldn't say any one is 'easier' than another, just 'different'.



Reply #14 Top
I would say that VB.net is a great way to learn. Its logical, and straightforward, and has a powerful function library in the .net architecture.
Reply #15 Top
I would say go with C. Large percent starts with C. Try to guess what VB compiler was compiled from.
Reply #16 Top
You could try Microsoft's Visual Basic Express, it's free.

WWW Link
Reply #17 Top
but can't understand BASIC code to save my life


Amen!!!! thanks for the .net I will look into that
Reply #18 Top
I'd suggest a .NET programming language. My preference is C#. I used to do Visual Basic before, but I've now changed to prefer curly backet type programming languages. (C, C#, Javascript, PHP)
Reply #19 Top
html and c++ were the easiest for me
Reply #20 Top
If you want to make Windows apps without too much hassle, choose .NET. C is necessary for some things, but it has things that get in the way when you're learning basic stuff, like memory allocation.