What Does This Mean?

  • Thread starter Thread starter DS
  • Start date Start date
D

DS

I have some VB6 code. What does this mean in Access?

' This collection holds the key/data pairs from the transaction results
string
'Tit is updated whenever the Process function is called
Dim cResults As New Collection

Thanks
DS
 
Heres a little more info. I'm getting an error on the first line...If
cResults("dc_reponse..........
Thanks
DS


Private Sub cmdProcess_Click()
Dim results As Collection
Dim value As String

createPost
Process
If cResults("dc_response_code") = "00" Or cResults("dc_response_code") =
"85" Then
Me.imgSuccess.Visible = True
Me.txtStatus.Text = "Success"
Else
Me.imgSuccess.Visible = False
Me.txtStatus.Text = "Failed"
End If
End Sub
 
Back
Top