03-09-2010, 11:02 PM
You can add to the window two textboxes and name them (tb_name,tb_password) and then also add a button that says add password.
I the click event of the button add:
also you should change the password declaration code to:
I the click event of the button add:
Code:
Listbox1.items.add(tb_name.text) 'adds the name to the list box
password.add(tb_password.text) 'adds the password
Code:
Public password as new list(of String)