What Does This Mean?

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
 
D

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top