Ask Experts Questions for FREE Help!
Ask    ||    Answer
 
Advanced  
 

Ask QuestionsprogressAnswer QuestionsprogressBuild ReputationprogressBecome an Expert
 
Free Answers in 3 Easy Steps

Register Now
3 Steps

At Ask Me Help Desk you can ask questions in any topic and have them answered for free by our experts. To ask questions or participate in answering them you must register for a free account. By registering you will be able to:
  • Get free answers from experts in any of our 300+ topics.
  • Accept money for answers that you provide.
  • Communicate privately with other members (PM).
  • See fewer ads.

Home > Computers & Technology > Programming > Compiled Languages > Other Compiled Languages   »   making applications

 
Thread Tools Search this Thread Display Modes
Question
 
 
#1  
Old Mar 28, 2006, 01:57 PM
jduke44
Full Member
jduke44 is offline
 
Join Date: May 2005
Posts: 401
jduke44 See this member's comment history on his/her Profile page.
making applications

I was approached by my brother the other day asking if I can make applications bc I have general programming knowledge. The most I know is C. I didn't get all the info yet but I figured I would ask this question first. What programming language are most applications made from? I know this may be too general of a question but I was just curious. You can give the short versions of your answer as to not waste much time with it...yet.
Thanks guys.

Reply With Quote
 
     

Answers
 
 
Old Mar 28, 2006, 02:48 PM   #2  
Senior Member
CroCivic91 is offline
 
CroCivic91's Avatar
 
Join Date: Nov 2004
Location: Zagreb, Croatia
Posts: 730
CroCivic91 See this member's comment history on his/her Profile page.
Send a message via ICQ to CroCivic91 Send a message via Yahoo to CroCivic91
If you know C, try Borland C++ Builder. I use it and I love it.
  Reply With Quote
 
     
 
 
Old Mar 28, 2006, 03:22 PM   #3  
Full Member
jduke44 is offline
 
Join Date: May 2005
Posts: 401
jduke44 See this member's comment history on his/her Profile page.
That's a thought. What type of applications do you generally make with that? Thanks CroCivic91.
  Reply With Quote
 
     
 
 
Old Mar 29, 2006, 02:41 AM   #4  
Senior Member
CroCivic91 is offline
 
CroCivic91's Avatar
 
Join Date: Nov 2004
Location: Zagreb, Croatia
Posts: 730
CroCivic91 See this member's comment history on his/her Profile page.
Send a message via ICQ to CroCivic91 Send a message via Yahoo to CroCivic91
I made all kinds of desktop applications with it...for example:
- trojan horse
- application for my high school, which helped someone make school schedule (when the given class uses which classroom)
- application for selling tickets in a theatre
- my own eBay search tool which runs once every day and does the given searches for me and saves the results in my folder
- waking up application which starts winamp at the given time
- chat for me and my friend, back in the days when we only had LAN and no Internet
  Reply With Quote
 
     
 
 
Old Mar 29, 2006, 08:02 AM   #5  
Computer Expert and Renaissance Man
ScottGem is offline
 
ScottGem's Avatar
 
Join Date: Jan 2003
Location: LI, NY - USA
Posts: 33,646
ScottGem See this member's comment history on his/her Profile page.ScottGem See this member's comment history on his/her Profile page.ScottGem See this member's comment history on his/her Profile page.ScottGem See this member's comment history on his/her Profile page.ScottGem See this member's comment history on his/her Profile page.ScottGem See this member's comment history on his/her Profile page.ScottGem See this member's comment history on his/her Profile page.ScottGem See this member's comment history on his/her Profile page.ScottGem See this member's comment history on his/her Profile page.ScottGem See this member's comment history on his/her Profile page.ScottGem See this member's comment history on his/her Profile page.
Pay to call ScottGem for advice ($.75/min)
Call ScottGem via Skype™
A Computer application is the use of programming tools to allow a task to be performed on a computer. Almost any piece of software can be considered an application.
  Reply With Quote
 
     
 
 
Old Mar 29, 2006, 12:39 PM   #6  
Full Member
jduke44 is offline
 
Join Date: May 2005
Posts: 401
jduke44 See this member's comment history on his/her Profile page.
Thanks, Scott and Crocivic. I kinda knew that about hte applications, I was just trying to get an idea as to the power of using C++ builder and the practical uses for it. This gives me some ideas to go on. Thanks again.
  Reply With Quote
 
     
 
 
Old Mar 30, 2006, 03:17 AM   #7  
Ultra Member
LTheobald is offline
 
LTheobald's Avatar
 
Join Date: Feb 2004
Location: Cambridge, UK
Posts: 1,047
LTheobald See this member's comment history on his/her Profile page.LTheobald See this member's comment history on his/her Profile page.
Call LTheobald via Skype™ Send a message via MSN to LTheobald
C isn't so powerful. Step up to C++ and you can do a lot. For example, a lot of computer games are written in C++.
  Reply With Quote
 
     
 
 
Old Mar 30, 2006, 12:52 PM   #8  
Full Member
jduke44 is offline
 
Join Date: May 2005
Posts: 401
jduke44 See this member's comment history on his/her Profile page.
Unfortunately, time restricts me right now but it shouldn't be to hard to learn C++ right?
  Reply With Quote
 
     
 
 
Old Mar 10, 2007, 03:43 PM   #9  
New Member
Brett in Boston is offline
 
Join Date: Mar 2007
Posts: 2
Brett in Boston See this member's comment history on his/her Profile page.
Quote:
Originally Posted by jduke44
I was approached by my brother the other day asking if I can make applications bc I have general programming knowledge. The most I know is C. I didn't get all the info yet but I figured I would ask this question first. What programming language are most applications made from? I know this may be too general of a question but I was just curious. You can give the short versions of your answer as to not waste much time with it...yet. :D
Thanks guys.
If you know C, you will be able to develop applications in C++ relatively quickly. The caveat to that is that initially, your coding style (which is typically procedural in nature for C developers) will not open up the full power of the C++ language. Over time however, as you learn about and embrace object-oriented programming principles, you will become a stronger C++ developer.

My recommendation, assuming you are working on and developing for a Windows-based computer, would be to download and install Microsoft's Visual C++ Express Edition development product. It is free, yet has most of the basic capabilities of their more fully featured Visual Studio 2005 family of development tools. Hopefully, it will provide both a good starting point for learning more about developing applications for the Windows platform using C++, but also that experience will expand your capabilities as a developer in general, irrespective of the target platform you develop for in the future.

The link to the site at which you can obtain the Visual C++ Express Edition product is:

http://msdn.microsoft.com/vstudio/express/visualc/

I hope this helps you in your efforts, and best wishes in your future coding endeavors.

Sincerely,
Brett
  Reply With Quote
 
     
 
 
Old Mar 13, 2007, 03:24 PM   #10  
Full Member
jduke44 is offline
 
Join Date: May 2005
Posts: 401
jduke44 See this member's comment history on his/her Profile page.
Even though this was a post I made a year ago it does help. I haven't had time to work on this but this would be good for the future . thanks
  Reply With Quote
 
     

Your Answer
Email me when someone replies to my answer
Join Login





Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

 
Similar Sponsors


Thread Tools
Show Printable Version Show Printable Version
Email this Page Email this Page

Similar Threads
Making Out
(17 replies)
Making A Dvd
(4 replies)
Lost help files in Win XP applications
(3 replies)
pause between two applications
(1 replies)
Running Applications
(3 replies)

Search this Thread

Advanced Search

Bookmarks

Sponsors



Copyright ©2003 - 2009, Ask Me Help Desk.
All times are GMT -8. The time now is 07:25 AM.