How do I return several Values of different types from a Standard Module in VB6? From the script below I am only returning a string,but I need to return several different String values, and ineteger values.
Code:
Public Function GetTopBM(ByRef strL, ByRef strR, ByRef y) As String
< User Code >
GetTopBM = 'SomeString"
End Function
Calling the Module
strTopBM = Module1.GetTopBM(strL, strR, y)