Results 1 to 2 of 2
  1. #1
    Lindsur is offline Novice
    Windows XP Access 2007
    Join Date
    Apr 2010
    Posts
    1

    Red face File Management


    I've created a very simple file management database, but I'm having problems. I'm a beginner user of access, so this is probably relatively easy to do. I'm not familiar enough with coding to do this without help. I need for the data base to auto update a field when a corresponding field is populated. I have a client name field, and a client number field. If someone were to type in the client number, I’d like the client name to populate. Vice versa would be good as well. I’d also like to set up a splash screen that can take users to either a search form for users just searching for individual files (should be simple, but again I’m a newbie) and an input form for me to use.

    Can anyone help walk me though this process?

  2. #2
    pbaldy's Avatar
    pbaldy is offline Who is John Galt?
    Windows XP Access 2007
    Join Date
    Feb 2010
    Location
    Nevada, USA
    Posts
    22,521
    If I'm understanding correctly, I use two combo boxes, both bound to the number. One displays numbers, the other names.

    Code:
    Private Sub cboAcctName_AfterUpdate()
      Me.cboAcctNum = Me.cboAcctName
    End Sub
    
    Private Sub cboAcctNum_AfterUpdate()
      Me.cboAcctName = Me.cboAcctNum
    End Sub
    Paul (wino moderator)
    MS Access MVP 2007-2019
    www.BaldyWeb.com

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

Similar Threads

  1. Replies: 13
    Last Post: 05-23-2011, 07:12 AM
  2. design equipment management
    By chanlongs in forum Database Design
    Replies: 0
    Last Post: 07-14-2009, 06:06 AM
  3. Network management
    By pandreas in forum Queries
    Replies: 0
    Last Post: 06-12-2009, 03:54 PM
  4. PTO Time Management Database
    By Stanggirlie in forum Programming
    Replies: 1
    Last Post: 03-27-2009, 09:33 AM
  5. Replies: 1
    Last Post: 12-30-2008, 08:58 PM

Tags for this Thread

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