Macro for display

N

Nikos Yannacopoulos

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
 
S

Steve Schapel

New2Adv,

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