+ Reply to Thread
Results 1 to 4 of 4

How to put a password in between pages

  1. #1
    Registered User
    Join Date
    02-26-2009
    Location
    U.S
    MS-Off Ver
    Excel 2003
    Posts
    42

    How to put a password in between pages

    Hello friends,


    I want to make a macro in i can put a password one the page 1 and after that is the password is correct only then the user can access on the next page.

  2. #2
    Registered User
    Join Date
    02-26-2009
    Location
    India
    MS-Off Ver
    Access
    Posts
    46

    Re: How to put a password in between pages

    Can do by this code:

    If InputBox(prompt:="Enter Password", title:="Enter Password", Default:=0) = "Whatever" Then

    If you want to stick with macros, you can see if the input box is available there.

  3. #3
    Registered User
    Join Date
    02-26-2009
    Location
    India
    MS-Off Ver
    Access
    Posts
    46

    Re: How to put a password in between pages

    Can do by this code:

    If InputBox(prompt:="Enter Password", title:="Enter Password", Default:=0) = "Whatever" Then

    If you want to stick with macros, you can see if the input box is available there.

  4. #4
    joe41
    Guest

    Re: How to put a password in between pages

    In VBA you can do this by::

    Code:

    If InputBox(prompt:="Enter Password", title:="Enter Password", Default:=0) = "password" Then
    'Open that form
    Else
    'Open the other form
    End If

+ 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