AutoNumber Field?

T588

Registered User.
Local time
Today, 14:23
Joined
Feb 3, 2003
Messages
65
I have an AutoNumber field on a form. Prior to an AutoNumber being generated the word "(AutoNumber)" is displayed in the field - is there any way to hide this.

Thanks
Vince
 
No but you could hide this textbox and create another textbox which will contain the value of the autonumber textbox only if it's a number.

In the new textbox insert this in the source:
Code:
=IIf(IsNumeric([txtAutoNumber]);[txtAutoNumber];"")
 
Sounds like a winner to me! Thanks......Vince
 
In fact if you just set the source to =[txtAutoNumber] that will do the trick, since when the field shows "(AutoNumber)" it is null.
 
Thanks...........................
 

Users who are viewing this thread

Back
Top Bottom