Class
The Class statement is used to define a class in VBScript.
Classes are used for object-oriented programming (OOP) and help to
abstract data and methods. If you are not familiar with object-oriented
programming, we suggest that you read more on the subject.
Class Date Private mDay Private mMonth Private mYear
Public Property Get DateString() DateString = CStr(mMonth) & "/" & CStr(mDay) & "/" & CStr(mYear) End Property End Class
|
 |

|