|
-
July 31st, 2000, 09:49 AM
#1
MoveComplete Event
I am trying to use this code:
Private Sub datSongs_MoveComplete(ByVal adReason As ADODB.EventReasonEnum, _
ByVal perror As ADODB.Error, adStatus As ADODB.EventStatusEnum, _
ByVal pRecordset As ADODB.Recordset)
Debug.Print "MoveComplete"
If pRecordset.EOF Or pRecordset.BOF Then
Else
Call ControlsTagLoad(pRecordset)
End If
End Sub
But when I try to run my form I get this error:
Compile error: Procedure operation does not match description of event or procedure having the same name.
This should just be an event that runs when the form is loaded.
Any ideas?
Thanks!
Erica
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|