Password Management

Language

Free Password Management Software

A very simple password management software. It encrypts your password using blowfish. You can create as many account as you want encrypted in the database. For personal use only. This will keep track all your username and password.

I created this because it's very hard to remember different account from various website.

Account information:

username: admin

password: admin

Download Password Manger v1.0 Installer here

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.

Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:

1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

Comments

Submitted byAnonymous (not verified)on Thu, 01/29/2009 - 21:25

thx for the codes, you save me lol

Submitted byAnonymous (not verified)on Tue, 02/03/2009 - 18:49

very nice

Submitted byAnonymous (not verified)on Wed, 02/11/2009 - 16:39

Fine..,

Submitted byAnonymous (not verified)on Mon, 03/02/2009 - 19:43

Nice code. Very  useful. But how to change the LogIn User Name and password

Submitted byAnonymous (not verified)on Tue, 04/14/2009 - 14:18

the password doesnt work for the data.mdb what is the password [email protected]
Submitted byadminon Tue, 04/14/2009 - 16:36

In reply to by Anonymous (not verified)

May be you are experiencing a problem with encoding. Try to change the regional settings under the control panel to something like english language. Or try to discover it yourself on what language that works for you.
Submitted byAnonymous (not verified)on Sun, 06/14/2009 - 19:11

can u pls help me sir how to make my password like this "******" instead of word like this "burloy"...i hope u eply this comment as soon as u read this thx...
Submitted byadminon Mon, 06/15/2009 - 17:36

In reply to by Anonymous (not verified)

In the textbox properties located at the right side bar of VB Editor add a value "*" in PasswordChar.
Submitted byAnonymous (not verified)on Tue, 06/16/2009 - 19:48

ur great sir i hope u will continue helping newbie like me who seek ur help.......thx a lot....

Hello fren, I am very new to VB. I downloaded your most of codes and its helpful. Can you please tell me how to create Installer.exe not the set up file. I can create the setup file using Package development but i dont know how to create self extracting installer.exe file as you created in Password Management Software. Most of the programs are having crystal report so it is not open. It says missing ActiveX Crystal Report like.... how to add the missing file or .dll. If you have please send at my e-mail address [email protected] Thanks a lot Nasir
Submitted byAnonymous (not verified)on Sun, 06/28/2009 - 01:13

hello sir. i hav even dwnloaeded thsi project cn u porvide me the login id and pass word
Submitted byAnonymous (not verified)on Thu, 10/08/2009 - 12:46

For changing Login User Name and password, you will have to modify data.mdb, which is encrypted. it's urgent
Submitted byAnonymous (not verified)on Sat, 06/05/2010 - 17:07

Thank you verymuch sir
Submitted byAnonymous (not verified)on Tue, 07/06/2010 - 02:32

sir the password management is not been executing i don't know y but can u tell me any solution its been coming MSCOMCTL.OCX is not registered
Submitted byAnonymous (not verified)on Wed, 01/05/2011 - 16:17

THNX MAN
Submitted byAnonymous (not verified)on Mon, 01/31/2011 - 08:44

CN.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "D:\Data\Data.mdb;Persist Security Info=False ;Jet OLEDB:Database Password=jaypee" there's a problem about this statement sir, i cant fix it, hope you can help me thank you
Submitted byAnonymous (not verified)on Mon, 01/31/2011 - 08:52

Class not register sir
Submitted byAnonymous (not verified)on Fri, 03/18/2011 - 09:40

its just for vb6
Submitted bycharlieon Sun, 08/21/2011 - 13:36

hi.. i have problem from this code.. Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hWnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long Private Sub cmdSave_Click() Dim password As String Dim EncryptString As String 'Dim DecryptString As String 'Dim rstblstudent As New ADODB.Recordset Dim rstblstudent As New ADODB.Recordset rstblstudent.Open "SELECT * FROM tblstudent where stdnumber= 'stdnumber'", cons, adOpenStatic, adLockOptimistic With rstblstudent If txtoldpass.Text = Enc.DecryptString(.Fields("stdpassword").Value) Then If txtnewpass.Text = txtverifypass.Text Then .Fields("stdpassword").Value = txtnewpass.Text .Update MsgBox "New password changed successfully.", vbInformation Unload Me Else MsgBox "Password does not match.", vbExclamation End If Else MsgBox "Please enter correct password.", vbExclamation End If End With rstblstudent.Close End Sub --- the error is: EITHER BOF OR EOF IS TRUE, OR CURRENT RECORD HAS BEEN DELETED, REQUESTED OPERATION REQUIRES CURRENT RECORD. the i choose is current. theres a password. i have using VB6.0 with MYSQL connection.. could you help me for this code.

Add new comment