Results 1 to 6 of 6
  1. #1
    sabre1 is offline Novice
    Windows XP Access 2010 (version 14.0)
    Join Date
    Oct 2010
    Posts
    22

    Record Navigation bar

    Is there anyway that i can disable certain aspects of the record navigation bar. I would like to keep the fact that they can click forward and backwards on records but i would like to disable the ability to search and to apply filters.



    Any help would be greatly appreciated.

  2. #2
    khalid's Avatar
    khalid is offline MS-Access Developer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Mar 2010
    Location
    Kuwait
    Posts
    244
    Hi,
    Yes there is a way,, the form is the best way to show your data to the users, where you have more control over your data to show...

    You can create record navigation buttons instead to use the table default navigation buttons...

    Hope this help.

  3. #3
    sabre1 is offline Novice
    Windows XP Access 2010 (version 14.0)
    Join Date
    Oct 2010
    Posts
    22
    Thanks for your reply Khalid, i did think about doing that however, i like them being able to see what record they are on i.e 5 of 12. Is there anyway of being able to show this?

  4. #4
    khalid's Avatar
    khalid is offline MS-Access Developer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Mar 2010
    Location
    Kuwait
    Posts
    244
    Quote Originally Posted by sabre1 View Post
    Thanks for your reply Khalid, i did think about doing that however, i like them being able to see what record they are on i.e 5 of 12. Is there anyway of being able to show this?
    Hi sabre,

    Record X of Y would solve your problem.

    Private Sub Form_Current()

    ' Provide a record counter for using with
    ' custom navigation buttons (when not using
    ' Access built in navigation)

    Dim rst As DAO.Recordset
    Dim lngCount As Long

    Set rst = Me.RecordsetClone

    With rst
    .MoveFirst
    .MoveLast
    lngCount = .RecordCount
    End With

    'Show the result of the record count in the text box (txtRecordNo)

    Me.txtRecordNo = "Record " & Me.CurrentRecord & " of " & lngCount

    End Sub
    This would help.

  5. #5
    sabre1 is offline Novice
    Windows XP Access 2010 (version 14.0)
    Join Date
    Oct 2010
    Posts
    22
    Thank you so much for this it worked perfectly.

  6. #6
    khalid's Avatar
    khalid is offline MS-Access Developer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Mar 2010
    Location
    Kuwait
    Posts
    244
    Quote Originally Posted by sabre1 View Post
    Thank you so much for this it worked perfectly.
    Glad that it worked for you

    So are you ready to make this thread as solved? and also the scalling icon and Rate Thread with stars (right top of the post).

    Cheers!

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

Similar Threads

  1. Record navigation buttons work backward
    By jonesy29847 in forum Access
    Replies: 22
    Last Post: 04-11-2011, 06:17 AM
  2. Replies: 2
    Last Post: 01-27-2011, 08:04 AM
  3. Help with navigation
    By phelpsville in forum Access
    Replies: 0
    Last Post: 04-16-2010, 07:33 PM
  4. Control Navigation Bar
    By Patrick.Grant01 in forum Access
    Replies: 0
    Last Post: 05-17-2009, 06:16 AM
  5. Navigation Code
    By henryclay in forum Forms
    Replies: 2
    Last Post: 11-15-2006, 09: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