input mask-cnc

J

Jettron

i have a drawing number field where i would like the number to have the
letters CNC- preceding every number. i would like to have the CNC- show on my
field block prior to me entering the number
thanks, Tony
 
S

SteveM

You could use the OnFocus event of the field:

If Me.NewRecord And Nz(Me.MyField, "") = "" Then
Me.MyField = "CNC-"
End If

Steve
 
Top