Valhalla Legends Archive

Programming => General Programming => Visual Basic Programming => Topic started by: Dark-Feanor on November 15, 2003, 11:16 AM

Title: OO Topics in Visual Basic
Post by: Dark-Feanor on November 15, 2003, 11:16 AM
I have been working on my bot, and my life would be a lot easier if I knew a little more about classes in visual basic 6.0.
Does anybody know how to not use the defualt constructor for Visual Basic Classes? Also, is there any way to make a class inheritance hierarchy in VB? Thanks for any help.
Title: Re:OO Topics in Visual Basic
Post by: Banana fanna fo fanna on November 15, 2003, 06:44 PM
Quote from: DaRk-FeAnOr on November 15, 2003, 11:16 AM
I have been working on my bot, and my life would be a lot easier if I knew a little more about classes in visual basic 6.0.
Does anybody know how to not use the defualt constructor for Visual Basic Classes? Also, is there any way to make a class inheritance hierarchy in VB? Thanks for any help.

VB doesn't have real classes. You get these modules which can be instantiated and have an initialize method; thats about it.

No inhertitance, no constructors.