PassList Maker
this is one program for generate password. it is good for crack :X example: 0000 0001 0002 0003 .... .... .... 9999 you can edit ;) i'am happy. My Love > http://www.sourcecodester.com
This tutorial will teach you on how to change the database password of an Access database programmatically using visual basic 6.0.
CN.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & DatabasePath & ";Persist Security Info=False;Mode=12;Jet OLEDB:Database Password="current password here" sqlExecStr = "ALTER Database Password " & txtNewPass & " " & txtOldPass & ";" CN.Execute sqlExecStrWhere CN is your database connection variable.
If you use the database before changing the password be sure to close it by adding code like: