Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Settings to make form look like and Input Box

Status
Not open for further replies.

lookE

IS-IT--Management
Sep 28, 2002
23
0
0
US
What are the settings that I need to make to have a dialog box look like the predefined InputBox? I would like to create a password login form with a text box whose property is set to 'password' (so that I can get the asterisks as the user is typing in the password). I like the look from using the InputBox function but it does not encrypt the keys pressed from displaying.

I truly appreciate any help. This has been one of the most frustrating area for me.

Thank you.
 
set navigationbuttons to false
set autoresize to false
set dividinglines to false
set min max buttons to both enabled
set modal to true
set recordselectors to false
set ... too dialog (forgot the propertie)
set the scrollbars to neither

in the onload set

docmd.restore

and thats about it

then place a textbox on it with the inputmask to password
and two buttons

ok and not ok( or cancel)

on not ok click

docmd.quit

on ok

docmd.openform "formname",acnormal


Christiaan Baes
Belgium
"What a wonderfull world" - Louis armstrong
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top