How to change the database password programmatically?
Friday, December 5, 2008 - 11:50
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 sqlExecStr
Where CN is your database connection variable.
If you use the database before changing the password be sure to close it by adding code like:
CN.close
Open the database exclusively by adding:
Mode=12;
This is very important since you cannot change the password if you did not open it exclusively.

Comments
password
how do i get the password to the downloaded VOTING SYSTEM software?
re: password
Search for term "password" in the code editor window. Be sure to select current project.
database password
what is the databse password .
my id is babaganesh_dutta@yahoo.co.in
re: database password
Please read FAQ.
What A great Job
I am a regular beneficiary of your tips and helps, keep up the good job. I must tell you, am inpressed by your selfless devotion to helping developers.
how did you initialized the
how did you initialized the CN variable? please send me the answer here atejaiko@gmail.com
re: how did you initialized the
Public CN As New Connection
VB.NET
HOW CAN ME WRITE IT IN VISUAL BASIC 2008
AND HOW CAN ME CREATE NEW PASSWORD FOR ACCESS 2003
An Example
Thats How i got it to work :D
re: An Example
Good
password
hi i declared my obeject as folloes but it complains.here is the code
Dim objUser As User
If txtUsername.Text <> "" Then
If txtNewPassword.Text = txtConfirmNew.Text Then
objUser = GetObject("LDAP://cn=" + txtUsername.Text _
+ ",cn=Users,dc=mycorp,dc=com")
objUser.SetPassword(txtNewPassword.Text)
objUser.pwdLastSet = 0
objUser.lockoutTime = 0
objUser.SetInfo()
'Reset everything
txtUsername.Text = ""
txtNewPassword.Text = ""
txtConfirmNew.Text = ""
MsgBox("Password changed!")
Else
MsgBox("Passwords are not the same, please try again!")
End If
Else
MsgBox("A username must be specified!")
End If
re: password
What is the error you encounter?
codes for changing password through vb 6.0
is there more understandable code for changing password using vb 6.0??:) thanks
How to change my password?
Hi there!
I would like to change my password that is stored on the database?
Change Password query error
My code is as follows,
------------------
Set con = New ADODB.Connection
Dim strConstring As String, strChgPw
Dim newPassword As String
Dim oldpassword As String
newPassword = "Sid"
oldpassword = "Null"
strConstring = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=MGallary;Data Source=SIDDHESH-DFF718"
con.Open strConstring
strChgPw = "ALTER Database Password " & newPassword & " " & oldpassword & ";"
con.Execute strChgPw
---------------------------------
But while running it promts error for line
con.Execute strChgPw
as: Incorrect syntax error near keyword 'Null'
I have not set any password for my database
Please help
coonection
also close the connection after
con.Execute strChgPw
write here con.close
how to use combo box in vb6
Hi Everyone,
Can I know how to use combo box when I click the first combo box , the second combox also change to display data related to first combo box?
I'm just start to learn vb6 and i'm new in this language. Can anyone help me please..
Thank you very much..
VB
I am vb programmer
Add new comment