F
Frank Dulk
As I do for a function to come back two values, for instance:
Function TTotal ()
Dim A, B, C, D As Integer
Dim SomaA, SomaB as Integer
A = 1
B = 2
C = 3
C = 4
SumA = A + B
SumB = C + D
I would have a Field where would place
Field1 = SumA
Field2 = SumB
I don't know if you understood the idea, I want a function to come back two
values and that I can use those values in different fields.
And I forgot how I do to call a procedure starting from other.
At once I thank the attention.
Function TTotal ()
Dim A, B, C, D As Integer
Dim SomaA, SomaB as Integer
A = 1
B = 2
C = 3
C = 4
SumA = A + B
SumB = C + D
I would have a Field where would place
Field1 = SumA
Field2 = SumB
I don't know if you understood the idea, I want a function to come back two
values and that I can use those values in different fields.
And I forgot how I do to call a procedure starting from other.
At once I thank the attention.