lecherodecorazon and 18 unknown users

 Word :   Username :  
 
Bottom
Author
 Thread :

I may need help (not mentally... or maybe...)

 
n°10852
MasterSasuke
Profil: New Penguin
Avatar
profil
Posted on 07-24-2008 at 02:17:48 AM  
 

I am new HERE, but i do know a lot about computers, and operating systems, ad all that general crud...

 

I have worked with, and bended to my will, many application and i was wondering...

 


where would i start if I wanted to start making my own application for the windows or linux operating systems?

 

ANY help would be appreciated...

answer
mood
GoogleAds
profil
Posted on 07-24-2008 at 02:17:48 AM  
 

answer
n°10854
Breakfastclub
Profil: Penguin Pro
Avatar
profil
Posted on 07-24-2008 at 05:25:56 AM  
 

MasterSasuke wrote :

where would i start if I wanted to start making my own application for the windows or linux operating systems?

 

Welcome to CrystalXP, MasterSasuke!

 

You mean write your own programs?
You need to learn scripting and computer languages like C++, Java, Perl    :xeyes:

 

It`s not easy

 

:meuh:

answer
n°10855
poiru
Profil: Moderator
Avatar
profil
Posted on 07-24-2008 at 09:21:06 AM  
 

MasterSasuke wrote :

where would i start if I wanted to start making my own application for the windows or linux operating systems?

 

Like Breakfastclub said, you need to learn something like C++, .NET, or C#.
It is not easy, so I think you should start by doing some tutorials (Google it [e.g. C++ tutorials]).

 

A few months ago I didn't know NSIS (a code to write installers), but now I am pretty good in using it. Its not like NSIS is the hardest code available, but anyway :wink:

 

I might start to study C++ or C# one day, too.

answer
n°10857
uttaresh
The Penguin Master
Profil: Penguin Pro
Avatar
profil
Posted on 07-24-2008 at 09:35:47 AM  
 

Take it from someone who knows a lot of programming languages (a.k.a. me :wink: )... Learning to develop applications is VERY hard work.

 

First, you'll have to start with basic C++ or C#, (though I recommend both). After about a few months of programming, you'll know everything you need to know to create Console-based DOS programs. After that, you'll have to learn either .NET or Java, or preferably BOTH. After about some more months, you'll finally be able to create ACTUAL Windows applications.

 

Just for inputting something as simple as your name in C++, you need to write this entire code:

 

CODE#include<iostream.h>
#include<conio.h>
#include<stdio.h>

 

//Comments are printed this way. They are for your benefit, and do not actually modify the program in any way.

 

void main()
{
      clrscr();   //Command for clearing anything from before execution
      char name[30];    //Variable of maximum 30 characters. We are assuming it won't be longer than 30 letters. If you want to remove this limit, it gets complicated.
      
      cout<<"Enter your name: ";  //Asks for name
      gets(name);               //Accepts the name from the user

 

      cout<<""\n\nYour name is "<<name<<".";    //Prints your name back

 

      getch();   //Waits for the user to press a key before the program closes
}

 

And remember, if the coding seems hard work... the logic is even harder!

 

My Grade 12 project in C++ was over 30 A4-sized pages of coding, and took over 100 hours to complete.

 

Don't mean to put you off with this post, but I just want to warn you: Programming is not something you can do (not at a high level anyway) without practice and dedication.

answer
n°10859
Corcorino
Profil: Penguin
Avatar
profil
Posted on 07-24-2008 at 12:09:18 PM  
 

I recommend you starting with VisualBasics 6 (VB6).You might also want to try VB7 but this one is harder.

 

A good tutorial for begginers is here - http://www.vb6.us/

answer
n°10870
MasterSasuke
Profil: New Penguin
Avatar
profil
Posted on 07-25-2008 at 02:26:09 AM  
 

my, my, so helpful all you people are.

 

thanks very much

 

i appreciate it

 

and... my 1st HD wallpaer!
tell me what you think...
btw, yes, i did make this from scratch, that is why it is lacking many details i could have put...

 

http://www.megaupload.com/?d=L7UR03VT

 

and no... photobucket wouldn't upload it fully(those farts)

 

and thanks for all the help again.

 

and no and yes to me realizing how hard it would be.

answer
n°10881
ghostnatyphon
Who Dares Wins
Profil: Penguin Pro
Avatar
profil
Posted on 07-25-2008 at 11:30:41 PM  
 

I would more suggest you started with Visual Basic Express 2008 or 2005.

 

http://www.microsoft.com/express/product/default.aspx

 

The main bonus of Visual Basic express is that there is a lot less code. You can drag and drop items like buttons and text boxes visually, instead of writing the code for it, and then you only program what the program does. You don't need to worry about the look.

 

Visual Basic is a very simple programming language that will be much easier to pick up than C++. You can go to the Microsoft site for this, though this si for windows programs only, not linux, and if you distribute your program the user will need to install the .Net framework.

 

Starting with C++ is good but it is very difficult. I started C++ at the age of 13 and got no further than console applications, though that only took me a week.

 

If you are going down the C++ route I strongly suggest this webiste:

 

http://www.cplusplus.com/

answer
n°10888
MasterSasuke
Profil: New Penguin
Avatar
profil
Posted on 07-26-2008 at 09:44:39 AM  
 

dang, it come with C#, and C++...

 

and i was starting to wonder where i would find all this stuff

 

THANK YOU!

 

[edit]
i now have it, and thank you all of you, i shall look deep into this and...*gulp*... learn

answer

Go to:
Add a reply