mask employee number in text box

S

Song Su

I have an unbound txt control on a form to ask user to type employee number.
After that, I'll use that number to retrieve reports.

On AfterUpdate event of that unbound control, how can I mask the employee
number to ****** and still can refer to it?

Thanks.
 
D

Douglas J. Steele

Private Sub txtEmployeeNumber_LostFocus()
Me!txtEmployeeNumber.InputMask = "Password"
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top