MESSAGE BOX DISPLAYS INPUT CHARACTERS

N

naveen prasad

Hi,

i have a form with a textbox.
I want to enter a word in that text box and when i press enter key
a message box should be displayed what characters i have entered.

Here the input type to the text box is in ******

for this i have changed the textbox inputmask type to password.

but iam not able to show in message box the characters which i have entered

kindly help how can i make it possible..
 
M

Marshall Barton

naveen said:
i have a form with a textbox.
I want to enter a word in that text box and when i press enter key
a message box should be displayed what characters i have entered.

Here the input type to the text box is in ******

for this i have changed the textbox inputmask type to password.

but iam not able to show in message box the characters which i have entered

kindly help how can i make it possible..


In the text box's AfterUpdate event:

MsgBox "You entered '" & Me.thetextbox & "'"
 
N

naveen prasad

excellent thank you ... it really worked .....

Marshall Barton said:
In the text box's AfterUpdate event:

MsgBox "You entered '" & Me.thetextbox & "'"
 

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