topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Tuesday March 19, 2024, 2:35 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: What Language are Windows Programs Coded In?  (Read 7672 times)

skywalka

  • Member
  • Joined in 2005
  • **
  • Posts: 254
    • View Profile
    • Donate to Member
What Language are Windows Programs Coded In?
« on: May 12, 2013, 05:15 AM »
Hi guys.

There seems to be a lot of coding languages.  I guess more than one of them is used for Windows programs?  Which ones?  How does Windows understand these different languages?

Thanx for looking.

Ath

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 3,610
    • View Profile
    • Donate to Member
Re: What Language are Windows Programs Coded In?
« Reply #1 on: May 12, 2013, 05:34 AM »
Regarding programming languages: All of them are used for applications.
How Windows 'understands' them: See this: Compiler

wraith808

  • Supporting Member
  • Joined in 2006
  • **
  • default avatar
  • Posts: 11,186
    • View Profile
    • Donate to Member
Re: What Language are Windows Programs Coded In?
« Reply #2 on: May 12, 2013, 12:02 PM »
A couple of resources that might help you:

Computer Programming For Beginners, Kids, and Adults

Best Free Ways to Learn Programming

DC's own Programming School.

Understanding Programming Languages (pdf), by M. Ben-Ari, Weizmann Institute of Science.

And from MSDN - The Basics: How Programming Works

flamerz

  • Supporting Member
  • Joined in 2011
  • **
  • Posts: 157
    • View Profile
    • Donate to Member
Re: What Language are Windows Programs Coded In?
« Reply #3 on: May 12, 2013, 03:00 PM »
tx for the links

TaoPhoenix

  • Supporting Member
  • Joined in 2011
  • **
  • Posts: 4,642
    • View Profile
    • Donate to Member
Re: What Language are Windows Programs Coded In?
« Reply #4 on: May 12, 2013, 09:49 PM »
Hi guys.

There seems to be a lot of coding languages.  I guess more than one of them is used for Windows programs?  Which ones?  How does Windows understand these different languages?

Thanx for looking.

I'll suggest a useful exercise is to find a sheet of paper and diagram a little what you are trying to learn.

Windows native applications?

And then there is stuff that is more "web based" but needs Windows local front ends.

Don't forget there is in fact a Windows Phone.

skywalka

  • Member
  • Joined in 2005
  • **
  • Posts: 254
    • View Profile
    • Donate to Member
Re: What Language are Windows Programs Coded In?
« Reply #5 on: May 21, 2013, 07:34 AM »
Thanks for the replies.

I'd like to make simple programs to start with.  Like this:
http://skwire.dcmemb...?page=files-2-folder

I'd like to make iPhone apps.  Android wouldn't hurt.

skwire

  • Global Moderator
  • Joined in 2005
  • *****
  • Posts: 5,286
    • View Profile
    • Donate to Member
Re: What Language are Windows Programs Coded In?
« Reply #6 on: May 23, 2013, 03:27 PM »
I'd like to make simple programs to start with.  Like this:
http://skwire.dcmemb...?page=files-2-folder

FWIW, that application is written in AutoHotkey but could have been written in any number of languages.

jf3000

  • Participant
  • Joined in 2013
  • *
  • Posts: 25
    • View Profile
    • Justin Bieber - The Video Archive
    • Read more about this member.
    • Donate to Member
Re: What Language are Windows Programs Coded In?
« Reply #7 on: May 23, 2013, 10:35 PM »
I personally either write windows software in VB.NET or Windows Presentation Foundation, with the WPF you will find the majority of Windows software is programmed in this environment. Other Windows languages we use C++ and when needed Python.
.NET programmer, always looking for new programming friends. CNET is where all my software is posted and released.

wraith808

  • Supporting Member
  • Joined in 2006
  • **
  • default avatar
  • Posts: 11,186
    • View Profile
    • Donate to Member
Re: What Language are Windows Programs Coded In?
« Reply #8 on: May 23, 2013, 11:23 PM »
WPF is not a stand-alone language, per-say.  WPF is, as it implies by the name, a UI framework, that is used to facilitate the building of the User Experience Layer in an XML based construct that is used alongside another programming language, usually C# or Visual Basic, though any .NET language can be utilized in theory.

WPF exists as a subset of .NET Framework types that are for the most part located in the System.Windows namespace. If you have previously built applications with .NET Framework using managed technologies like ASP.NET and Windows Forms, the fundamental WPF programming experience should be familiar; you instantiate classes, set properties, call methods, and handle events, all using your favorite .NET Framework programming language, such as C# or Visual Basic.

Just wanted to set that straight... :)

jf3000

  • Participant
  • Joined in 2013
  • *
  • Posts: 25
    • View Profile
    • Justin Bieber - The Video Archive
    • Read more about this member.
    • Donate to Member
Re: What Language are Windows Programs Coded In?
« Reply #9 on: May 24, 2013, 12:16 AM »
and I see you copied and pasted that in there :P
.NET programmer, always looking for new programming friends. CNET is where all my software is posted and released.

wraith808

  • Supporting Member
  • Joined in 2006
  • **
  • default avatar
  • Posts: 11,186
    • View Profile
    • Donate to Member
Re: What Language are Windows Programs Coded In?
« Reply #10 on: May 24, 2013, 07:57 AM »
and I see you copied and pasted that in there :P

Well, yes.  That's why its a quote.  And it's from the link... that I put into the text.  :huh:

Why go through the trouble of paraphrasing if there's a perfectly good explanation that's referenced.  That way you don't have to depend on my definition, but see what the creators say about it.