J
JamesJ
Trying to show the number of record in txtCount using the following:
If Me.NewRecord Then
txtCount = "0 Item(s)"
Else
txtCount = Me.RecordsetClone.RecordCount & " Item(s)"
End If
The form is based on a table and has a list box who's rowsource is the same
table.
The problem is when the form opens the textbox shows only 1 Item until I
make a
selection in the listbox then it shows the proper number.
Any ideas here?
Thanks,
James
If Me.NewRecord Then
txtCount = "0 Item(s)"
Else
txtCount = Me.RecordsetClone.RecordCount & " Item(s)"
End If
The form is based on a table and has a list box who's rowsource is the same
table.
The problem is when the form opens the textbox shows only 1 Item until I
make a
selection in the listbox then it shows the proper number.
Any ideas here?
Thanks,
James