Results 1 to 2 of 2
  1. #1
    RawToast is offline Novice
    Windows 7 32bit Access 2010 32bit
    Join Date
    Dec 2014
    Posts
    7

    Search for all Tabs

    Hello,


    I have one spreadsheet with lots of client information on it - too much to meaningfully display on one form. I have broken the information up into different forms representing different categories (for example: "General" "Purchases" "Mailing"). I then assembled those forms into tabs within a single form, "MainControl", first using the "Navigation Form" feature, and then instead switching to the subform tab control feature.

    What I would like to have is a search bar at the top of my MainControl parent form, above the tabs, where I could search for a client ID number and all of the subforms in the tabs would present information on that client. In previous Access projects, I have relied on copy pasted single-form search buttons that do not work in this application. I have tried in vain to make adjustments to these buttons (I have some programming know-how, but VBA is lost on me), but I have now given up and am hoping someone here might be able to help.

    Thank you very much!
    -Theo

  2. #2
    ranman256's Avatar
    ranman256 is online now VIP
    Windows Vista Access 2010 32bit
    Join Date
    Apr 2014
    Location
    Kentucky
    Posts
    9,525
    enter the ID in the textbox
    then filter the MAIN form

    Code:
    me.filter = "[id] = " & txtID
    me.filterON = true
    the sub form will fill with that client data. You have a sub form right?
    the subform is controled by the TABS.
    case tab.value = "Purchases"
    sub.sourceObject = "frmPurchase-sub"
    case tab.value = "Mailing"
    sub.sourceObject = "frmMail-sub"

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

Similar Threads

  1. Tabs below Ribbon
    By data808 in forum Access
    Replies: 2
    Last Post: 01-18-2014, 05:41 PM
  2. how does these tabs work !?!?
    By joe55555 in forum Access
    Replies: 2
    Last Post: 09-04-2013, 05:12 AM
  3. Warp Tabs
    By Finser in forum Forms
    Replies: 5
    Last Post: 09-02-2013, 07:58 PM
  4. Tabs on Tabs?
    By NateHaze in forum Forms
    Replies: 4
    Last Post: 06-01-2011, 11:32 AM
  5. Why can't I see object tabs?
    By Buakaw in forum Access
    Replies: 3
    Last Post: 01-15-2011, 01:48 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