May 2, 2011 #1 CruiseMan Programmer Joined Nov 17, 2006 Messages 29 Location 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?
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?
May 2, 2011 #2 gmmastros Programmer Joined Feb 15, 2005 Messages 14,912 Location US 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 Upvote 0 Downvote
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