
June 13th, 2003, 05:58 PM
|
|
Contributing User
|
|
Join Date: Jun 2003
Posts: 63
Time spent in forums: 3 h 2 m 39 sec
Reputation Power: 5
|
|
|
subroutines within classes
I know you can have
Public Property Get
Public Property Set
Public Property Let
as functions/methods within a class.
What if all I want is a subrountine which is not for setting or getting anything? What if I just want to achieve a side-effect? Example I want to do something like:
myClass.initializeStuff()
I dont wanna get or set or let. How do I do it in a class?
|