+ Reply to Thread
Results 1 to 2 of 2

Users can change Password

  1. #1
    Registered User
    Join Date
    01-31-2007
    Posts
    5

    Users can change Password

    Hi

    Any one help me!

    I want to do a form in the excel worbook to allow users to change their password after the first login. by the way the users password login are already created.

    finally I want a code to protect the sheet or some cells when the user save the change he made and the other users can view only, and the next day the protect remove automatically.


    Thanks

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259
    Hello Habib,

    These macros will run when the Workbook is opened and is closed. When the user closes the Workbook, he or she will be prompted for a password to protect the Worksheets. This can be done only once. After it has be done, the Worksheets are protected for at least 1 day.

    When the Workbook is opened, the macro checks to see if 1 day or more has passed since the Worksheets were protected. If so, all the Worksheets will be unprotected and the user can make changes.

    Add a Standard VBA Module to your Workbook and then copy and paste the code into it. Then place calls to the macros in the Workbook events shown in the examples.

    Please Login or Register  to view this content.
    Calling the Macros:
    Private Sub Workbook_BeforeClose(Cancel As Boolean)
    Call LockWorkbook
    End Sub

    Private Sub Workbook_Open()
    Call UnlockWorkbook
    End Sub



    If you have any questions, please contact me.
    Sincerely,
    Leith Ross

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1