using inputBox

  • Thread starter Thread starter Roy Goldhammer
  • Start date Start date
R

Roy Goldhammer

Hello there

I have on many areas at my program an input box that uses to enter password.

Is there a way to show in the input box ***** instead of the exect numbers i
enter?
 
If you are talking about a textbox on a form, yes. Open the property sheet
for the textbox and click on the Inputmask property. Click on the button
with three dots ... And it will open a wizard. One of the selections is a
password field.

God Bless,

Mark A. Sam
 
Roy said:
Hello there

I have on many areas at my program an input box that uses to enter
password.
Is there a way to show in the input box ***** instead of the exect
numbers i enter?

Some time back a poster explained a way to make API calls to accomplish that,
but "as normally configured" no. You would need to use your own form for the
dialog instead of using an InputBox. Not that difficult really. You just open
it with the acDialog option, and have your [OK] button hide the form instead of
closing it. Then your calling code can read the entered value and close the
form.
 

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

Back
Top