|
What language to learn for creating Windows apps?
Last post 02-20-2012 10:22 AM by Medezark. 19 replies.
-
-
-
Sutherlands


- Joined on 07-24-2008
- Posts 1,189
|
Re: What language to learn for creating Windows apps?
If it needed to run on Windows machines only, C#, no question. If it needs to run on Linux/Mac, and WINE is an option, then it's still good. If not, maybe Java or if that's not viable C++?
|
|
-
-
ekolis


- Joined on 01-09-2008
- Cincinnati, OH, USA
- Posts 327
|
Re: What language to learn for creating Windows apps?
Just to clarify, when Sutherlands said WINE, I'm pretty sure he was talking about Mono... WINE is for running native Windows apps on Linux/Mac, while Mono is a port of .NET to Linux/Mac.
Dinosaur office! RAAAAAR!
|
|
-
-
-
Cassidy


- Joined on 01-09-2012
- Posts 921
|
Re: What language to learn for creating Windows apps?
Then there's always PERL..
|
|
-
-
boomzilla


- Joined on 12-11-2007
- NOVA
- Posts 2,470
|
Re: What language to learn for creating Windows apps?
It's hard to find anything more portable than good old C (especially if the ARM portability is important). However, if you're doing any sort of GUI work, that's probably more pain than it's worth. The first thing I'd look into is what's available to you as far as USB/Serial libraries that you can use. The C# route seems like the most painless way these days if portability isn't terribly important. You might have luck with Mono as mentioned, and it seems to run on at least some ARM processors, but it seems like it would almost certainly be more pain that getting vanilla C to operate there.
|
|
-
-
error_NoError


- Joined on 12-14-2010
- Posts 48
|
Re: What language to learn for creating Windows apps?
Excellent, I was already leaning towards C++/C#+.Net and Mono looks pretty tasty with its cross-platform support. I'm trying to avoid investing a lot of time learning the buzzword language of the year only to have nobody care about it when I finally become proficient in it. Can anyone recommend a decent quickstart book for C#+.Net/Mono?
|
|
-
-
blakeyrat


- Joined on 10-29-2008
- Posts 6,107
|
Re: What language to learn for creating Windows apps?
C# is such a huge time saver over C or C++ that, if it turns out you do need to port it, you could consider just rewrite the port from scratch and count it against the "time saved" bank. And if you never need to port, congratulations you just banked a bunch of time.
The other thing you could do is look into a cross-platform tool like RealBasic or Runtime Revolution or Filemaker. I haven't used any of those tools in a long time, but last time I touched it, RealBasic was damned good for things like this.
 Upset at what I said? Stare at this plant.
|
|
-
-
Sutherlands


- Joined on 07-24-2008
- Posts 1,189
|
Re: What language to learn for creating Windows apps?
error_NoError:Excellent, I was already leaning towards C++/C#+.Net and Mono looks pretty tasty with its cross-platform support. I'm trying to avoid investing a lot of time learning the buzzword language of the year only to have nobody care about it when I finally become proficient in it. Can anyone recommend a decent quickstart book for C#+.Net/Mono?
I like Effective C# and More Effective C#, but they're not exactly quickstart books. What are you already proficient in?
|
|
-
-
dhromed


- Joined on 04-13-2005
- Dutchland
- Posts 7,934
|
Re: What language to learn for creating Windows apps?
Sutherlands:I like Effective C# and More Effective C#, but they're not exactly quickstart books. That's ironic on multiple levels.
|
|
-
-
error_NoError


- Joined on 12-14-2010
- Posts 48
|
Re: What language to learn for creating Windows apps?
blakeyrat:C# is such a huge time saver over C or C++ that, if it turns out you do need to port it, you could consider just rewrite the port from scratch and count it against the "time saved" bank. And if you never need to port, congratulations you just banked a bunch of time.
The other thing you could do is look into a cross-platform tool like RealBasic or Runtime Revolution or Filemaker. I haven't used any of those tools in a long time, but last time I touched it, RealBasic was damned good for things like this.
Unfortunately, RealBasic is what I'm trying to move away from. It was a great way for me to move from scripting to the GUI world, but as I try to make applications more robust I'm running into all the quirks and bugs that won't ever get fixed. The current applications I have in mind are Windows only but it would be useful to have the option to port them to MacOS/Linux. From the research I've done it sounds like C# is the way to go, I can target .Net initially for Windows and then do some porting to Mono for the MacOS/Linux ports.
Sutherlands:I like Effective C# and More Effective C#, but they're not exactly quickstart books. What are you already proficient in?
I guess quickstart is the opposite of what I need, I've dabbled in a lot of things but mostly webdev stuff with PHP and Perl, and more recently RealBasic for maintaining the machinery applications. I can quickly learn to hack together a program in anything, but I'd like to know how to do it the right way. Moving from a console to a GUI world introduces a whole other level of complexity so a book that shows how to efficiently manage that complexity using good practices and patterns is probably what I need.
|
|
-
-
ekolis


- Joined on 01-09-2008
- Cincinnati, OH, USA
- Posts 327
|
Re: What language to learn for creating Windows apps?
RealBASIC, huh? Perhaps you'd find VB.NET more your style?
Dinosaur office! RAAAAAR!
|
|
-
-
blakeyrat


- Joined on 10-29-2008
- Posts 6,107
|
Re: What language to learn for creating Windows apps?
ekolis:RealBASIC, huh? Perhaps you'd find VB.NET more your style?
RealBasic is a lot closer to C# than it is to Visual Basic, both syntax-wide and library-wise.
But I guess you don't care about that, you just wanted to make a snark based on its name. Bravo.
 Upset at what I said? Stare at this plant.
|
|
-
-
Nagesh


- Joined on 01-31-2011
- Hyderabad, India
- Posts 645
|
Re: What language to learn for creating Windows apps?
error_NoError:I'm a scripter turned application programmer by taking on the maintenance of some of our internal applications for controlling machinery. They're written using a niche language that is good for quick development of basic applications but has some real shortcomings. I think I've wasted enough time with this language and am looking to learn something more standard and portable that I can use to rewrite these applications. If you had to write an application from scratch that would be run primarily on Windows computers to communicate with USB/Serial devices, what would you use? What if it needed to run on other processors (like ARM) or operating systems like MacOS?
if you learn java, there are severe advantages I can list.
1) You can send your app on any platform (windows included)
2) You can jump quickly on mobile app development
3) Other developer will take you more seriously.
|
|
-
-
Sutherlands


- Joined on 07-24-2008
- Posts 1,189
|
Re: What language to learn for creating Windows apps?
Nagesh: error_NoError:I'm a scripter turned application programmer by taking on the maintenance of some of our internal applications for controlling machinery. They're written using a niche language that is good for quick development of basic applications but has some real shortcomings. I think I've wasted enough time with this language and am looking to learn something more standard and portable that I can use to rewrite these applications. If you had to write an application from scratch that would be run primarily on Windows computers to communicate with USB/Serial devices, what would you use? What if it needed to run on other processors (like ARM) or operating systems like MacOS?
if you learn java, there are severe advantages I can list. 1) You can send your app on any platform (windows included) 2) You can jump quickly on mobile app development 3) Other developer in Hyderabad will take you more seriously.
FTFY
|
|
-
-
Nagesh


- Joined on 01-31-2011
- Hyderabad, India
- Posts 645
|
Re: What language to learn for creating Windows apps?
Sutherlands: Nagesh: error_NoError:I'm a scripter turned application programmer by taking on the maintenance of some of our internal applications for controlling machinery. They're written using a niche language that is good for quick development of basic applications but has some real shortcomings. I think I've wasted enough time with this language and am looking to learn something more standard and portable that I can use to rewrite these applications. If you had to write an application from scratch that would be run primarily on Windows computers to communicate with USB/Serial devices, what would you use? What if it needed to run on other processors (like ARM) or operating systems like MacOS?
if you learn java, there are severe advantages I can list. 1) You can send your app on any platform (windows included) 2) You can jump quickly on mobile app development 3) Other developer in Hyderabad will take you more seriously.
FTFY
Is sad that you are looking at Blakeyrat for approval.
Don't jump on bandwagon unless you know band beforehand.
|
|
-
-
Sutherlands


- Joined on 07-24-2008
- Posts 1,189
|
Re: What language to learn for creating Windows apps?
Nagesh: Sutherlands:
Nagesh: error_NoError:I'm a scripter turned application programmer by taking on the maintenance of some of our internal applications for controlling machinery. They're written using a niche language that is good for quick development of basic applications but has some real shortcomings. I think I've wasted enough time with this language and am looking to learn something more standard and portable that I can use to rewrite these applications. If you had to write an application from scratch that would be run primarily on Windows computers to communicate with USB/Serial devices, what would you use? What if it needed to run on other processors (like ARM) or operating systems like MacOS?
if you learn java, there are severe advantages I can list. 1) You can send your app on any platform (windows included) 2) You can jump quickly on mobile app development 3) Other developer in Hyderabad will take you more seriously.
FTFY
Is sad that you are looking at Blakeyrat for approval.
Don't jump on bandwagon unless you know band beforehand.
My first job out of college was writing in Java. At my current job we have a system that we maintain in Java. I'll take C# over it any day.
Also, I wasn't looking to Blakeyrat for approval. I was jabbing at him because he hates the FTFY meme.
|
|
-
-
ekolis


- Joined on 01-09-2008
- Cincinnati, OH, USA
- Posts 327
|
Re: What language to learn for creating Windows apps?
blakeyrat:
RealBasic is a lot closer to C# than it is to Visual Basic, both syntax-wide and library-wise.
But I guess you don't care about that, you just wanted to make a snark based on its name. Bravo.
No, I was not making a snark; I was merely making an assumption which proved to be false. I've never used RealBASIC before, but I thought it would be reasonable that it would have a BASIC-like syntax...
Dinosaur office! RAAAAAR!
|
|
-
-
spamcourt


- Joined on 01-28-2008
- Posts 131
|
Re: What language to learn for creating Windows apps?
Right now we are using Python+PyUSB+PySide and it works like a charm with our mac and linux customers and the couple that still use windows.
But, if your target audience is mainly windows I'll pick C#.
I don't get bugged, if you know what I mean (probably not).
|
|
-
-
Medezark


- Joined on 12-11-2009
- Posts 370
|
Re: What language to learn for creating Windows apps?
HTML5, Javascript, Jquery -- Windows 8 will supposedly be more amenable to these types of "apps", and it will allow you to create applications for the web and other platforms.
[quote user="blakeyrat"] He has that disease that made Spock move so fast that he was invisible and made buzzing sounds everywhere. [/quote] bzzzzz, whoosh, bzzzzz, woosh
|
|
Page 1 of 1 (20 items)
|
|
|