D
DS
I have a listbox that is unbound. I need to add records to it if there
are no records in the listbox, So I devised this....I put it on the
Mouse Down event.
If Me.List1.listcount = 0 Then
DoCmd.OpenForm "AddRecords"
Else:
End If
My question is...are there any problem awaiting me using Mouse Down?
Anything I should watch out for? Anything that will come back to bite me?
Thanks
DS
are no records in the listbox, So I devised this....I put it on the
Mouse Down event.
If Me.List1.listcount = 0 Then
DoCmd.OpenForm "AddRecords"
Else:
End If
My question is...are there any problem awaiting me using Mouse Down?
Anything I should watch out for? Anything that will come back to bite me?
Thanks
DS