VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

Simple way to start learning classes

Chrysovalantis Anastasiades  (5 Submissions)   Miscellaneous   VB 6.0   Unknown Difficulty   Mon 6th October 2008   Mon 8th February 2021

Simple way to start learning classes

API Declarations


'////
Public a As Double
Public area As Double
Public volume As Double

Private Sub Class_Initialize()
a = 0
area = 0
volume = 0
End Sub

Public Sub Calculate()
area = a * a
volume = area * a
End Sub


Rate Simple way to start learning classes (1(1 Vote))
Simple way to start learning classes.bas

Simple way to start learning classes Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters