Jump to content

Featured Replies

You're so stupid t3rm1ght. Everyone knows C++ is better than VB, except for you, were you dropped on the head as a baby?

 

 

really, tell me how C++ is better than VB, Id love to hear an explaination. They are both High-Level Languages and can do the same exact shit. And if you try to say that VB cant do Low-Level work, you are sadly mistaken.

  • Replies 103
  • Views 1.8k
  • Created
  • Last Reply

Top Posters In This Topic

C++ is faster and more efficient. I won't go into any more detail than that, as I'd be wasting my time. Just un-install anything programming related and get back to doing your homework, kid.
rofl, noob, play with VB and youll see just how much power it has. You have a biased opinion about C++ becaue you are to noob to learn VB, which is sad considering how completely easier it is to code in.
rofl, noob, play with VB and youll see just how much power it has. You have a biased opinion about C++ becaue you are to noob to learn VB, which is sad considering how completely easier it is to code in.

 

rofl, can u explain to me y VB is so much better?

 

[EDIT] also list a few good programs that are written in VB

Hmm, an MSN Messenger server, Code Fixer 3.0.9, A very nice TRON game (light cycles, with Comercial quality GFX), most RATs, loads of programs.

 

theres some very low-level shit that ive found with VB, stuff that deals witht he NT internals, dangerous shit. Im not saying C++ sucks, im just saying that VB doesnt

rofl, noob, play with VB and youll see just how much power it has. You have a biased opinion about C++ becaue you are to noob to learn VB, which is sad considering how completely easier it is to code in.

 

I'm too noob to learn VB? That's an extremely retarded comment, I have coded in VB but that was years ago, it was a joke then and still is now. No matter what you say, VB will NEVER be considered a good language, as I already said: It's slow and inefficient. You keep referring to what you can do in it, when I haven't mentioned anything like that, learn to read, I'm sure they'll teach you that at school time. ;)

 

If you want to continue this argument, go learn a "real" language then maybe your opinion on this matter will have some value.

i was replying to Dark Urza whatever his anme is, maby you should go back to 2nd grade and learn to read, 4th grade is to advanced for you right now.
i was replying to Dark Urza whatever his anme is, maby you should go back to 2nd grade and learn to read, 4th grade is to advanced for you right now.

 

I believe the post I quoted was not directed at him and all comments I made had nothing to do with whatever you replied to him with.

 

anme is, maby

is to advanced

 

Unbelievable, a guy who spells this bad telling me to learn to read. I seriously hope you're joking.

Termight, you don't know shit about other languages than VB. Just stfu and stop embarrassing yourself more. :O_o:

You fuckheads. Shut up.

 

It all depends what suits you best. C++ would make more efficient and professional programs, but that does not make VB shit. VB can do just as much as C++, it just is less reliable...

 

And anyone who say's VB apps don't run on their computer should be shot. You can easily bind a VB app with any OCX or DLL file you need by using .res (resource) files.

i was replying to Dark Urza whatever his anme is, maby you should go back to 2nd grade and learn to read, 4th grade is to advanced for you right now.

 

 

U

SUCK

AT

CODING

.PERIOD!

 

go back to kindergarten and tell those little kids things they shouldnt do to end up like u

You fuckheads. Shut up.

 

It all depends what suits you best. C++ would make more efficient and professional programs, but that does not make VB shit. VB can do just as much as C++, it just is less reliable...

 

And anyone who say's VB apps don't run on their computer should be shot. You can easily bind a VB app with any OCX or DLL file you need by using .res (resource) files.

 

Exactly, I kind of stepped over by saying that VB could be better, but boh of the languages are great. Also, through watching the videos at channel9.msdn.com (Microsoft "Behind-the-scenes") I have learned that the entire Office suite was made in Visual Basic, C#, and VC++.

 

Anyway, Im done arguing, go on thinking its a crap language, thats your opinion.

Hmm, an MSN Messenger server, Code Fixer 3.0.9, A very nice TRON game (light cycles, with Comercial quality GFX), most RATs, loads of programs.

 

theres some very low-level shit that ive found with VB, stuff that deals witht he NT internals, dangerous shit. Im not saying C++ sucks, im just saying that VB doesnt

RATs are mostly written in D

rofl. a five year old could learn visual basic. and you cannot do anything with it. termright, dont even try to say you can. YOU CANNOT. end of story. go learn C and then you will be m3n.

shell(taskmgr.exe, vbhide)

 

^ rolf.

 

edit: C++ nor VB sucks, the people who argue about them DO

 

dumb fucks. :sleep2:

I like Sobeit's approach, your always good at making this good Sobiet, your m3n ^_^

 

but I love this:

 

(hello world comparrison, VB vs C++ )

 

C++:

 

#include <iostream.h>

int main()

{

cout<<"Hello World! <<endl;

return 0;

}

 

 

 

 

VB:

 

Public Class HelloWorld

Public Sub Main()

Console.WriteLine("Hello World")

End Sub

End Class

 

 

which looks easier? I for one think VB, Object oriented is teh shit!

 

C++:

 

#include <iostream.h>

int main()

{

cout<<"Hello World! <<endl;

return 0;

}

 

 

#include <iostream>

using namespace std;

int main()

{

cout<<"hello world!";

return 0;

}

m3n use namespace

Omfg stfu all of you.

 

T3rm1ght, just jump off a building, gravity is your friend.

 

Lets all just agree ASM is eleet k?

On the origional topic, you can find anything you would possiblly ever need to use using google querys.

 

Judgeing by t3rm1ghts unique and hip way of spelling his name I am going to assume he is around 15. Argiung with a 15 year old about something he has no experince in the real world with, and that thinks c++ is the be all and end all of every language will get you no where. He is ignorant as hell and you will never change his opinon on anything. He is at his lash out at everyone be a rebel stage. :poke:

I like Sobeit's approach, your always good at making this good Sobiet, your m3n ^_^

 

but I love this:

 

(hello world comparrison, VB vs C++ )

 

C++:

 

#include <iostream.h>

int main()

{

cout<<"Hello World! <<endl;

return 0;

}

 

 

 

VB:

 

Public Class HelloWorld

Public Sub Main()

Console.WriteLine("Hello World")

End Sub

End Class

 

 

which looks easier? I for one think VB, Object oriented is teh shit!

 

how about

 

#include <stdio.h>

void main(void)

{

printf("Hello World");

}

 

(not so sure bout void main as i have never used it before) its more C like but meh, C still owns VB

On the origional topic, you can find anything you would possiblly ever need to use using google querys.

 

Judgeing by t3rm1ghts unique and hip way of spelling his name I am going to assume he is around 15. Argiung with a 15 year old about something he has no experince in the real world with, and that thinks c++ is the be all and end all of every language will get you no where. He is ignorant as hell and you will never change his opinon on anything. He is at his lash out at everyone be a rebel stage. :poke:

 

lol, your dont read very well, I said I am a VB programmer, my entire argument was over VB, not C++ :p, anyway, the name in question "TerMight" is spelt using some leetspeak do one: my apprecation for the internet culture two: because TerMight is a copyrighted name, and I cant infringe upon that. Next time, read k?

lol, your dont read very well, I said I am a VB programmer, my entire argument was over VB, not C++ :p, anyway, the name in question "TerMight" is spelt using some leetspeak do one: my apprecation for the internet culture two: because TerMight is a copyrighted name, and I cant infringe upon that. Next time, read k?

 

Yeah I picked the wrong username, sorry. I was looking at the post by viperx and paine, and somehow or another got your names mixed up. Sorry about that guy.

Guest
This topic is now closed to further replies.