In a class module is there a sub such as when you make an instance of the class that it is called where you can pass arguments?
Like in Java, for example, I have a class called Square
When I make an instance of this class I do this:
Square sq = new Square(x1,y1,x2,y2)
How to do this in VB for same named class
Like in Java, for example, I have a class called Square
When I make an instance of this class I do this:
Square sq = new Square(x1,y1,x2,y2)
How to do this in VB for same named class