Hello,
I am trying to create a math function in a module and then call the function from a VB form. For some reason I get errors each time I try.
on the VB Form
A = 1
B = 2
how do I call the functin below?
Module
Function Add (A,B)
Add = A + B
End Function
I am trying to create a math function in a module and then call the function from a VB form. For some reason I get errors each time I try.
on the VB Form
A = 1
B = 2
how do I call the functin below?
Module
Function Add (A,B)
Add = A + B
End Function
Comment