Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Passing an argument list in a VB6 function call

Status
Not open for further replies.

CruiseMan

Programmer
Nov 17, 2006
29
0
0
US
Can you pass a 2 dimensional string array in the argument list of a VB6 function call? If so, what should the signature look like?
 
Yes. Exactly the same way you would pass a one dimensional array of strings.

Ex:

Code:
Private Function(ByRef ArrayData() As String) As String()

  ' Your code here

End Function

-George
Microsoft SQL Server MVP
My Blogs
SQLCop
"The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top