Password protection

azizrasul

Well-known Member
Joined
Jul 7, 2003
Messages
1,304
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. Windows
I use the following function to create a password on a MS Access database. Also. given the password, the function also allows a password to be modified or if the MS Access database has to have it's password removed, to enter the password and hence for the MS Access database to be free of any password protection. I am seeking similar code that will do this for a MS Excel file.

PLEASE NOTE that I am not seeking code to remove a password from a password protected MS Excel file without first having knowledge of the password in the first place.

Code:
Public Function SetDatabasePassword(strDatabasePath As String, Optional pNewPassword As Variant, Optional pOldPassword As Variant) As String
'https://www.engram9.info/access-2007-vba/using-ado-to-set-the-database-password.html

'To CREATE a new password for a database that is not password protected, use this.
'str = SetDatabasePassword("C:\Users\Aziz\Desktop\MS Excel Files\Test.accdb", "NEWpassword", "")

'To REMOVE a password, use this.
'str = SetDatabasePassword("C:\Users\Aziz\Desktop\MS Excel Files\Test.accdb", "", "OLDpassword")

'To MODIFY an existing password to a different password, use this.
'str = SetDatabasePassword("C:\Users\Aziz\Desktop\MS Excel Files\Test.accdb", "NEWpassword", "OLDpassword")

'If SetDatabasePassword("C:\Users\Aziz\Desktop\MS Excel Files\Test.accdb", "", "N") = "Invalid password for database" Then
'    MsgBox "Invalid password for database"
'End If
   
    Dim cnn As ADODB.Connection
    Dim strNewPassword As String
    Dim strOldPassword As String
    Dim strCommand As String
    Dim strProvider As String
   
    On Error GoTo Report_Error
   
    strProvider = "Microsoft.ACE.OLEDB." & Application.Version

    'If a password is not specified (IsMissing), the string is "NULL" WITHOUT the brackets.
    If IsMissing(pNewPassword) Then
        strNewPassword = "NULL"
    Else
        strNewPassword = "[" & pNewPassword & "]"
    End If
   
    If IsMissing(pOldPassword) Then
        strOldPassword = "NULL"
    Else
        strOldPassword = "[" & pOldPassword & "]"
    End If

    'Define the string to change the password.
    strCommand = "ALTER DATABASE PASSWORD " & strNewPassword & " " & strOldPassword & ";"
   
    'Open a connection to the database.
    Set cnn = New ADODB.Connection

    With cnn
        .Mode = adModeShareExclusive
        .Provider = strProvider
        If Not IsMissing(pOldPassword) Then
            .Properties("Jet OLEDB:Database Password") = pOldPassword
        End If
        .Open "Data Source=" & strDatabasePath & ";"
        .Execute strCommand
    End With
   
    If Len(pNewPassword) > 0 And Len(pOldPassword) = 0 Then
        strResult = "Password Set"
    ElseIf Len(pNewPassword) > 0 And Len(pOldPassword) > 0 Then
        strResult = "Password Modified"
    ElseIf Len(pNewPassword) = 0 And Len(pOldPassword) > 0 Then
        strResult = "Password Removed"
    End If
   
Exit_SetDatabasePassword:
    On Error Resume Next
    cnn.Close
    Set cnn = Nothing
    SetDatabasePassword = strResult
    Exit Function

Report_Error:
    If Err.Number = -2147467259 Then
        strResult = "Error in modifying or removing password." & vbCrLf & vbCrLf & "Check that there is an existing password."
    ElseIf Err.Number = -2147217843 Then
        strResult = "Invalid password."
    Else
        strResult = Err.Number & " " & Err.Description
    End If

'Exit as an error has occured.
Resume Exit_SetDatabasePassword

End Function[\code]
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.

Forum statistics

Threads
1,214,975
Messages
6,122,538
Members
449,088
Latest member
RandomExceller01

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top