Call it my lack of experience with VB6, but I can't understand why my code (sample below) is giving me a Type Mismatch error when I use the Fields argument in my call to write things to a debug log. Can anyone help or explain?
Public Sub Update(ByRef myChain As cChain, ByVal Index As Long, ByVal myID As Long, ByRef Fields() As String, ByRef Values() As String)
Call WriteToDebugLog("Update - Index: " & Index & ", myID: " & myID & ", Fields: " & Fields)
End Sub
BTW, my WriteToDebugLog() routine takes ByVal str1 As String as it's argument.