What do I need to create APP's ? -
Zeromanster - 29.08.2009
I want to learn to make app's like sa:mp script king or sa:mp cfg editor etc.
What program should i use ? I've got a bunch of ideas and i want to learn.
Thanks for the answers.
Re: What do I need to create APP's ? -
James_Alex - 29.08.2009
for newbie's use "Microsoft Visual Basic"
and for professional use "Microsoft Visual C++"
Re: What do I need to create APP's ? -
.::: Ecko :::. - 29.08.2009
VB is too easy,but it's powerful and it's for beginners.
I suggest you VB you will learn it really fast.
Ecko
Re: What do I need to create APP's ? -
James_Alex - 29.08.2009
Quote:
Originally Posted by .::: [E
Ecko :::. ]
VB is too easy,but it's powerful and it's for beginners.
I suggest you VB you will learn it really fast.
Ecko
|
yes VB is very easy for beginners
but VC++ is the best for developing big projects
Re: What do I need to create APP's ? -
Zeromanster - 29.08.2009
Where can i download VB and is it free or .. ?
Re: What do I need to create APP's ? -
gszyclon - 29.08.2009
I need this program too but sersh in ******!
Re: What do I need to create APP's ? -
James_Alex - 29.08.2009
visit the miscrosoft website
Re: What do I need to create APP's ? -
gszyclon - 29.08.2009
ok thanks!
Re: What do I need to create APP's ? -
SergiKirov - 29.08.2009
C# is better
Re: What do I need to create APP's ? -
joemomma53 - 29.08.2009
For a first language, I suggest something simple, like vb(vb6 or .NET), or Python.
Python is a great language for beginners, and professionals. It has tons of libraries, very clear syntax, and easy to understand.
For example, Hello world is 1 - 2 lines! (Depending on the OS. You need the shebang on *nix)
Код:
print "Hello world!"
but for Python 3, it would be :
Код:
print("Hello World!")