Results 1 to 2 of 2
  1. #1
    jamesfranklin is offline Advanced Beginner
    Windows XP Access 2007
    Join Date
    Nov 2012
    Posts
    33

    Login Form


    Hi,

    Please find the attachment file. I have database with some user's and Admin Login. They user will login into the system with some username and password in "Frmuserlogon" and what my requirement is I have another form which name as "userform". i want to display the username in the combo24 which i use to login in the "frmuserlogon"


    Please give me some solution and thank u for ur response
    Attached Files Attached Files

  2. #2
    June7's Avatar
    June7 is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,930
    Why a combobox instead of textbox?

    One way to pass value to UserForm is to use the OpenArgs argument of DoCmd.OpenForm.

    DoCmd.OpenForm "UserForm", , , , , , Me.txtUser

    Then code behind UserForm can extract value from OpenArgs

    Sub Form_Load()
    Me.Combo24 = Me.OpenArgs
    End Sub
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Login form
    By pervezahmed in forum Forms
    Replies: 1
    Last Post: 01-13-2013, 12:45 PM
  2. Login Form
    By data808 in forum Forms
    Replies: 1
    Last Post: 08-23-2012, 04:48 PM
  3. Login Form
    By bnar in forum Security
    Replies: 11
    Last Post: 07-24-2012, 03:11 AM
  4. Replies: 1
    Last Post: 12-11-2011, 11:48 AM
  5. Login form with nt login
    By hitesh_asrani_j in forum Forms
    Replies: 6
    Last Post: 09-22-2011, 11:43 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums