I figured it out myself after i posted this question. Thanks anyway. I'll give you the points anyway! Thanks mate!
Main Topics
Browse All TopicsI want to use an input box for a password, but i want the user only to see stars. I can't seem to find out how to do this although its probably very simple. Can i use a form to do the same thing, i tried it and it disappears before i can enter anything is there a property i need to disable/enable.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: MikePPosted on 1999-04-11 at 12:21:36ID: 1483409
Create a new form, name it frmPwd. Create a textbox on it, name it Text1. Set the PasswordChar of the textbox to be * . Use frmPwd.Show 1 to show the form. In the OK_click on the form, put 'Hide'. to get what use typed it, use:
Dim s as string
s=frmpwd.text1.text
If you need any help, feel free to ask