I need to know how to display the current record number of the total records in a label for a database application.
my code looks like this:
Private Sub Form_Load ()
lblRecDisplay.Caption = " Record " & _
CStr(intCurrentRecNo) & " of " & CStr(intLastRecNo)
what's wrong with this?
my code looks like this:
Private Sub Form_Load ()
lblRecDisplay.Caption = " Record " & _
CStr(intCurrentRecNo) & " of " & CStr(intLastRecNo)
what's wrong with this?