T T588 Registered User. Local time Today, 08:17 Joined Feb 3, 2003 Messages 65 May 8, 2003 #1 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
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
jca I need to think it over ! Local time Today, 08:17 Joined Aug 1, 2001 Messages 42 May 8, 2003 #2 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];"")
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];"")
T T588 Registered User. Local time Today, 08:17 Joined Feb 3, 2003 Messages 65 May 8, 2003 #3 Sounds like a winner to me! Thanks......Vince
neileg AWF VIP Local time Today, 13:17 Joined Dec 4, 2002 Messages 5,975 May 8, 2003 #4 In fact if you just set the source to =[txtAutoNumber] that will do the trick, since when the field shows "(AutoNumber)" it is null.
In fact if you just set the source to =[txtAutoNumber] that will do the trick, since when the field shows "(AutoNumber)" it is null.
T T588 Registered User. Local time Today, 08:17 Joined Feb 3, 2003 Messages 65 May 8, 2003 #5 Thanks...........................