Page 1 of 2 12 LastLast
Results 1 to 15 of 21
  1. #1
    christm is offline Novice
    Windows 7 32bit Access 2007
    Join Date
    Feb 2013
    Posts
    13

    Bottom half of form not showing?

    Hi

    First time doing an Access db so please bear with me.
    I've created a form which has tabbed forms at the bottom of it.
    So the top half of the form is based on one table with various table for the bottom half of the form based on other tables.
    It's generall working ok, apart from the fact that when I view the main form in Form view, I'm only seeing about half the page, the bottom half of the screen is just white - I do have a scroll bar and if I scroll down I can see the rest of the tabbed forms at the bottom (but the bottom half of the screen is still white, it just scrolls the top half of the screen).
    Does anyone know what I've done and how to get it so that the whole screen shows the forms rather than just the top half?

    Thanks



    Martin

  2. #2
    June7's Avatar
    June7 is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,973
    If you want to provide db for analysis, follow instructions at bottom of my post. However, I can't review it until after Feb 22. If you still need help then submit post with attached file.
    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.

  3. #3
    christm is offline Novice
    Windows 7 32bit Access 2007
    Join Date
    Feb 2013
    Posts
    13
    Please find database attached.
    Any help gratefully received.

    Martinmartin.zip

  4. #4
    June7's Avatar
    June7 is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,973
    Reduce the main form Footer to zero height also reduce height of the subform containers and then can reduce height of tab control. This will help display the subforms but you might see that when you click one of the tabs the main form scrolls so the Header is not visible. This happens on my 17" laptop screen.

    The ReportDetails and Contact subforms are a bit large and suggest you compact them some more. Also, many of the controls on main form can be downsized. Their height is more than necessary for a single row of data. Some of the controls are 'grouped'. Select all the controls, right click Layout/Remove. This will allow you to individually size and move the controls.

    Why have Headers on the subforms? They take up space and repeat the caption from the tabs. The CareerDetails subform doesn't need the label that says 'Career Details' - remove it and reduce Header height.

    You should not save Age in table. Save date of birth and calculate age.
    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.

  5. #5
    christm is offline Novice
    Windows 7 32bit Access 2007
    Join Date
    Feb 2013
    Posts
    13
    Thanks - very helpful - have made those changes and looking better.
    Any other tips gratefully received.

    Martin

  6. #6
    christm is offline Novice
    Windows 7 32bit Access 2007
    Join Date
    Feb 2013
    Posts
    13
    Hi

    Another question. This will be a databse to be used by management to either look at the main form I have created or run one of a number of reports I will create.
    How do I create a nice looking menu that they will see when they open the database with 'buttons' they can press depending which form or report they'd like?

    Thanks

    Martin

  7. #7
    June7's Avatar
    June7 is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,973
    That is just a form with buttons on it. Set the db to open this form by default. Click the Office button > Options > CurrentDatabase / DisplayForm
    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.

  8. #8
    christm is offline Novice
    Windows 7 32bit Access 2007
    Join Date
    Feb 2013
    Posts
    13
    Thanks for that - I'm getting the issue that was mentioned might happen that when clicking on one of the tabs, the form jumps so the tabbed bit is at the top of my screen now (so I can't see the main bit at the top of the form).
    Is there a way to stop this happening?

    Martin

  9. #9
    June7's Avatar
    June7 is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,973
    By downsizing the forms - resize and reposition controls. Scrunch everything tighter.

    Or set the main form as a Popup.
    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.

  10. #10
    christm is offline Novice
    Windows 7 32bit Access 2007
    Join Date
    Feb 2013
    Posts
    13
    Thanks. Another question I'm afraid.
    My form was working as you could see from the one I uploaded, however there was little data in the main table.
    I had a spreadsheet full of data to import - so I imported it to a new table (was getting an error when trying to put it in existing one). The new table has exactly the same columns as the main table.
    I then ran a script to insert into the main table (select * from new table).
    When I go into the main table I can see all the data. However when I open the form that shows data from the main table, there are no records there.

    Any ideas?

    Thanks

    Martin

  11. #11
    June7's Avatar
    June7 is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,973
    Is there a filter applied to the form's records? At this point I can only make guesses. Would have to review the db.
    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.

  12. #12
    christm is offline Novice
    Windows 7 32bit Access 2007
    Join Date
    Feb 2013
    Posts
    13
    Hi

    Please find attached the new version of the database where there is info in the Player Details1 form doesn't have any data despite the Player Details: Table being full of data.

    Was hoping to get this out to someone today so if anyone has a good quick fix - that would be much appreciated!

    Martin
    Attached Files Attached Files

  13. #13
    June7's Avatar
    June7 is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,973
    The RecordSource for PlayerDetails1 form should not include the CareerDetails table, especially not with an INNER JOIN which requires related records in both tables.

    Subforms still large enough to cause form to scroll up. Suggest reduce height of some of the comments boxes then reduce height of the subforms and tab control.

    Might disable the record selector on the main form.

    Although it looks nice with logo, the main form header just takes up space.
    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.

  14. #14
    christm is offline Novice
    Windows 7 32bit Access 2007
    Join Date
    Feb 2013
    Posts
    13
    Thanks for that - sorry for stupid reply but how do I access the RecordSource to change it to have an Outer Join?

  15. #15
    christm is offline Novice
    Windows 7 32bit Access 2007
    Join Date
    Feb 2013
    Posts
    13
    Sorry, ignore that - worked it out

Page 1 of 2 12 LastLast
Please reply to this thread with any new information or opinions.

Similar Threads

  1. Half-day leave computation
    By bsvubana in forum Access
    Replies: 5
    Last Post: 11-29-2012, 02:28 AM
  2. Replies: 7
    Last Post: 06-13-2012, 06:27 PM
  3. Open form and locate it on the bottom
    By Dominaz in forum Forms
    Replies: 4
    Last Post: 11-17-2011, 08:03 PM
  4. Totals showing across bottom of Datasheet view
    By Laurie B. in forum Access
    Replies: 8
    Last Post: 09-14-2011, 01:47 PM
  5. can't update form-in the bottom bar of
    By ymds in forum Access
    Replies: 2
    Last Post: 07-19-2010, 06:26 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