12-22-2011, 12:06 PM
It is similar to the usage as in Java.
Define methods in a class and then call the methods using the objects created for that class.
Example
Define methods in a class and then call the methods using the objects created for that class.
Example
Code:
set classObj=new ExampleClass
classObj.fnExample
Class ExampleClass
Function fnExample()
msgbox "This is fn in class"
End Function
End Class