Sythe.Org Forums     Register     FAQ     Members List     Calendar     Mark Forums Read    
 
Sythe.Org Forums  
   Runescape Gold

Sythe.org — A Virtual Goods Trading Hub

Make real cash! buying and selling in-game items.

We have a no-scam policy.

You can make thousands playing your favourite games here at Sythe.org.

Just sign up an account and follow the rules!


Take me to

Runescape Markets

Other Game Markets

Support Center

Register an Account

Close
Programs
Reply
 
LinkBack Thread Tools Display Modes
  #1  
Old 10-13-2009, 10:26 PM
Draucia
 
Posts: n/a
Default Programs

I don't want to waste my time learning the wrong language (currently trying to learn Visual Basic). I made my first calculator in Visual basic 2008 .

Anyways, all the good programs like a dvd creater, file converter and a registry cleaner are really cool, But what language do they all use?

Last edited by Draucia : 10-13-2009 at 10:27 PM.
Reply With Quote
  #2  
Old 10-13-2009, 10:31 PM
Swan's Avatar
When They Cry...
Ex-Moderator
 
Join Date: Jan 2007
Location: Japan
Posts: 4,404
Default Re: Programs

Most likely a C language such as C or C++, as they allow easier low-level interaction with the machine than other languages.
__________________
Quote:
[14:54:13] <&Filefragg> x9 is made of 5 glow in the dark gorilla dildos vibrating in unison.
[14:54:19] <%TDD> hot
[14:54:22] <+Aoi> Win
[14:54:23] <x9> I TOLD YOU NOT TO TELL ANYONE, DAMNIT
Reply With Quote
  #3  
Old 10-13-2009, 10:41 PM
Draucia
 
Posts: n/a
Default Re: Programs

Oh okay. What do you reccomend for me to learn? C or C++? (Which one would make better programs?)
Reply With Quote
  #4  
Old 10-14-2009, 02:05 AM
Guru
BANNED
 
Join Date: Sep 2008
Location: lulwut
Posts: 1,121
Default Re: Programs

c++.
mts.
Reply With Quote
  #5  
Old 10-14-2009, 07:19 AM
Swan's Avatar
When They Cry...
Ex-Moderator
 
Join Date: Jan 2007
Location: Japan
Posts: 4,404
Default Re: Programs

To be honest you can quite easily make these programs using .Net, it's just that C or C++ would be better to do it with as they are used professionally.
__________________
Quote:
[14:54:13] <&Filefragg> x9 is made of 5 glow in the dark gorilla dildos vibrating in unison.
[14:54:19] <%TDD> hot
[14:54:22] <+Aoi> Win
[14:54:23] <x9> I TOLD YOU NOT TO TELL ANYONE, DAMNIT
Reply With Quote
  #6  
Old 10-14-2009, 12:04 PM
Legend
Java Programmers Pirate
 
Join Date: Jan 2007
Posts: 10,895
<3 n4n0
Default Re: Programs

Start with C#, or Vb.net or Java... Just because I have shit installed for just those three. Lol.
__________________
PM me with any issues.

I do not MM or trade anything.
Anyone claiming to be me in a trade or MM is an imposter.
Reply With Quote
  #7  
Old 10-14-2009, 09:55 PM
Draucia
 
Posts: n/a
Default Re: Programs

I tried to download Dev-C++ but it says I don't have a GNU make file. But I do. Lame.. Can you make nice programs with C#? It would be nice if you could tell me which one and what compilier.


SUF: Huh, VB.net is good? I always heard that you can only make suckish programs with it. I made my first program with it though (a calculator ).
Reply With Quote
  #8  
Old 10-14-2009, 10:29 PM
Swan's Avatar
When They Cry...
Ex-Moderator
 
Join Date: Jan 2007
Location: Japan
Posts: 4,404
Default Re: Programs

Quote:
Originally Posted by draucia View Post
I tried to download Dev-C++ but it says I don't have a GNU make file. But I do. Lame.. Can you make nice programs with C#? It would be nice if you could tell me which one and what compilier.


SUF: Huh, VB.net is good? I always heard that you can only make suckish programs with it. I made my first program with it though (a calculator ).
VB .Net, C# etc. All run upon the .Net platform, meaning you can do the same essential things with them. I find C# is better, though.

Also, Dev-C++ sucks. try CodeBlocks.
__________________
Quote:
[14:54:13] <&Filefragg> x9 is made of 5 glow in the dark gorilla dildos vibrating in unison.
[14:54:19] <%TDD> hot
[14:54:22] <+Aoi> Win
[14:54:23] <x9> I TOLD YOU NOT TO TELL ANYONE, DAMNIT
Reply With Quote
  #9  
Old 10-14-2009, 11:33 PM
Draucia
 
Posts: n/a
Default Re: Programs

So if I learn VB.net I can create a program what somebody could create on C#? When I download codeblocks and install it, my AV picks it up as "malwarewar" or something. I searched it up and its something to do with a rouge I think. Do you know any other compiler?


Edit: Would Microsoft visual c++ express edition be an compiler?

Last edited by Draucia : 10-14-2009 at 11:35 PM.
Reply With Quote
  #10  
Old 10-15-2009, 08:48 AM
Swan's Avatar
When They Cry...
Ex-Moderator
 
Join Date: Jan 2007
Location: Japan
Posts: 4,404
Default Re: Programs

Quote:
Originally Posted by draucia View Post
So if I learn VB.net I can create a program what somebody could create on C#? When I download codeblocks and install it, my AV picks it up as "malwarewar" or something. I searched it up and its something to do with a rouge I think. Do you know any other compiler?


Edit: Would Microsoft visual c++ express edition be an compiler?
Visual C++ is a capable IDE, sure.

I can assure you that CodeBlocks isn't malware though. It's open source and widely supported by the open source community. Make sure you download it from http://www.codeblocks.org/

Also, learn the difference between a compiler and an IDE. An IDE is an Integrated Development Environment - It's what you actually write code in. A compiler is what compiles that code in to machine-level instructions (e.g. The .exe file you end up with). Neither CodeBlocks nor Visual Studio are compilers, they are IDEs. CodeBlocks uses the MinGW compiler (open source), and Visual Studio uses the Microsoft compilers.
__________________
Quote:
[14:54:13] <&Filefragg> x9 is made of 5 glow in the dark gorilla dildos vibrating in unison.
[14:54:19] <%TDD> hot
[14:54:22] <+Aoi> Win
[14:54:23] <x9> I TOLD YOU NOT TO TELL ANYONE, DAMNIT
Reply With Quote
  #11  
Old 10-15-2009, 08:37 PM
Draucia
 
Posts: n/a
Default Re: Programs

Okay, but does Visual Studio have a compilier built-in?


Edit: I'm going to forget about programming for a while until I am really good at web programming (like html, php and stuff).

Last edited by Draucia : 10-15-2009 at 08:37 PM.
Reply With Quote
Reply



Cheap RS Gold Store  Runescape Gold

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

All times are GMT +1. The time now is 06:50 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.6.1