VBS :Classes
Program on classes in Vbs
Example :
call a2()Class a1
private Function add2()
msgbox 2+3
End Function
Function add1()
Call add2() 'inturn call the above function
End Function
End Class
Function a2()
Set a2=new a1
a2.add1
End Function
No comments:
Post a Comment