Results 1 to 4 of 4
  1. #1
    tfurnivall is offline Novice
    Windows 7 32bit Access 2010 32bit
    Join Date
    Apr 2013
    Posts
    7

    How do I change the position of the tabs on a Tab control in Access 2010


    I'm tring to use a Tab control in Access 2010, and I would like to have the actual tab s at the bottom of the form, rather than the top. There seems to be no way of doing this.I know it is possible in Excel (using the Multi-Page control), and wonder why this simple feature seems not to exist in Access?

  2. #2
    Missinglinq's Avatar
    Missinglinq is offline VIP
    Windows 7 64bit Access 2007
    Join Date
    May 2012
    Location
    Richmond (Virginia, not North Yorkshire!)
    Posts
    3,018
    Why is an Excel feature not available in Access? Because it's Access, not Excel!

    If you want to do this, you'll have to customize it yourself:

    1. Select the Tabbed Control itself (not a Page on it) and go to Properties - Format and change the Style Property from Tabs to None
    2. Place a series of Command Buttons along the bottom of the Tabbed Control
    3. Use code for these Buttons as below

    Code:
    Private Sub btnPage1_Click()
     Me.TabControlName = 0
    End Sub
    
    Private Sub btnPage2_Click()
     Me.TabControlName = 1
    End Sub
    Note that the page index is Zero-based, i.e. the first page is 0, the second page is 1, and so forth.

    Linq ;0)>
    The problem with making anything foolproof...is that fools are so darn ingenious!

    All posts/responses based on Access 2003/2007

  3. #3
    tfurnivall is offline Novice
    Windows 7 32bit Access 2010 32bit
    Join Date
    Apr 2013
    Posts
    7
    Thanks, Linq!

    That's what I was afraid of.

    Of course the idea of maintaing consistency across the products that use VBA is such a patently silly one, I'm surprised that MS even has the use of "Dim" the same in all of the Office products.

    Thanks, at any rate, for your suggestion. It's an elegant solution to a (blindingly) definite omission.

    Tony

  4. #4
    Missinglinq's Avatar
    Missinglinq is offline VIP
    Windows 7 64bit Access 2007
    Join Date
    May 2012
    Location
    Richmond (Virginia, not North Yorkshire!)
    Posts
    3,018
    The thing that you have to keep in mind is that the Boys of Redmond didn't sit down one day and decide to build a suite of office apps from scratch; the various components each had its own unique origins, and all in all, they can be made to work together quite well.

    Glad you find the workaround useful!

    Good luck with your project!

    Linq ;0)>
    The problem with making anything foolproof...is that fools are so darn ingenious!

    All posts/responses based on Access 2003/2007

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

Similar Threads

  1. Replies: 22
    Last Post: 12-29-2015, 10:41 PM
  2. 2010 windows vs. tabs
    By benjammin in forum Access
    Replies: 3
    Last Post: 05-24-2011, 01:33 PM
  3. Replies: 1
    Last Post: 02-23-2011, 05:11 AM
  4. Replies: 2
    Last Post: 01-15-2011, 10:56 AM
  5. Replies: 1
    Last Post: 10-19-2009, 02:37 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