AstroWars

All tutorials created in VB6 to be posted in here.
12 posts Page 1 of 2
Contributors
User avatar
codendstuff1
New Member
New Member
Posts: 18
Joined: Mon Sep 20, 2010 9:29 am

AstroWars
codendstuff1
Astro Wars - Shoot 'em up game
You do not have the required permissions to view the files attached to this post.
User avatar
Axel
Coding God
Coding God
Posts: 1928
Joined: Sun Jun 27, 2010 9:15 pm

Re: AstroWars
Axel
This is vb6 not vb.NET !
http://vagex.com/?ref=25000
User avatar
Scottie1972
Codenstuff Elite
Codenstuff Elite
Posts: 953
Joined: Thu Jan 14, 2010 5:48 am

Re: AstroWars
Scottie1972
I have moved this Topic to the V6 Section.
Image
User avatar
codendstuff1
New Member
New Member
Posts: 18
Joined: Mon Sep 20, 2010 9:29 am

Re: AstroWars
codendstuff1
thanks for doing that.
User avatar
codendstuff1
New Member
New Member
Posts: 18
Joined: Mon Sep 20, 2010 9:29 am

Re: AstroWars
codendstuff1
its a nice application please download it.
User avatar
teunissenstefan
New Member
New Member
Posts: 18
Joined: Tue Aug 03, 2010 9:45 am

Re: AstroWars
teunissenstefan
Uh what is the difference between vb.NET and vb6?
User avatar
MrAksel
C# Coder
C# Coder
Posts: 1758
Joined: Fri Mar 26, 2010 12:27 pm

Re: AstroWars
MrAksel
VB.NET is a more user-friendly language managed by the .NET framework. I'm sure other can give a more detailed description, but VB6 is harder to use than its .NET version
LMAOSHMSFOAIDMT
Laughing my a** of so hard my sombrero fell off and I dropped my taco lmao;


Over 30 projects with source code!
Please give reputation to helpful members!

Image
Image
GoodGuy17
Coding God
Coding God
Posts: 1610
Joined: Mon Sep 07, 2009 12:25 am

Re: AstroWars
GoodGuy17
MrAksel wrote:
VB.NET is a more user-friendly language managed by the .NET framework. I'm sure other can give a more detailed description, but VB6 is harder to use than its .NET version
Honestly, I find VB6 much easier to use than its .NET version... it is simpler and has an easy-to-use interface. Not to mention the code is usually much shorter.

It's all a matter of opinion, I guess.
User avatar
MrAksel
C# Coder
C# Coder
Posts: 1758
Joined: Fri Mar 26, 2010 12:27 pm

Re: AstroWars
MrAksel
Okay, then I just need to know, is VB6 Object Oriented? (With classes etc.)
I thought VB6 was some sort of easy to use native language where you use API's and such in a much larger scale:
Code: Select all
'VB6 method to set text?'
SendMessage(command1.Handle, WM_SETTEXT, Nothing, "This is the text")

'VB.NET method'
button1.Text = "This is the text."
LMAOSHMSFOAIDMT
Laughing my a** of so hard my sombrero fell off and I dropped my taco lmao;


Over 30 projects with source code!
Please give reputation to helpful members!

Image
Image
GoodGuy17
Coding God
Coding God
Posts: 1610
Joined: Mon Sep 07, 2009 12:25 am

Re: AstroWars
GoodGuy17
Yes, it is partially Object Oriented.

And about the code, the code is the sort of the same. It's a lot alike actually, but some is easier in VB6.

Buttons were called Commands or CommandButtons, I think, and to set the text, I believe you would use:
Code: Select all
Command1.Caption = "Text"
.Text would be .Caption, in many cases (not all, I don't think).
12 posts Page 1 of 2
Return to “VB6 Tutorials”