Public class Yoyo
Private Sub MySubProggy(ByVal hello As Byte)
Dim Class1 As New HELLO (HELLO is in module)
...
...
Max = Class1.Maximum(A, B, C)
Min = Class1.Minimum(A, B, C)
After using the fuctions:
Do I set something to Nothing or do I dispose something ?
...
...
End sub
End Class[/Vb]
[code=vb]Module mdlCam
Public Class HELLO
Public Function Maximum(ByVal a As Single, ByVal b As Single, ByVal c As Single) As Single
...
End Function
Public Function Minimum(ByVal a as single, ByVal b as single,ByVal c as single) As Single
...
End function
End Class
End Module[/VB]
like this ? so do I have to set something to Nothing after using
the functions ?
and have I done something wrong like is the code too public or something ?