Macro for display

  • Thread starter Thread starter Guest
  • Start date Start date
Yes, you can!

Use an unbound textbox to display it, called, say, txtRecNum. Use the form's
On Current event to run a single line of code:

Me.txtRecNum = Me.CurrentRecord

HTH,
Nikos
 
New2Adv,

Put an unbound textbox on the form, and in its Control Source put...
=[Form].CurrentRecord
 
Back
Top