MESSAGE BOX DISPLAYS INPUT CHARACTERS

  • Thread starter Thread starter naveen prasad
  • Start date Start date
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..
 
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 & "'"
 
Back
Top