Results 1 to 8 of 8
  1. #1
    drunkenneo is offline Competent Performer
    Windows XP Access 2007
    Join Date
    Jun 2013
    Posts
    199

    Navigation Problem

    I have made a contact form where particular member credentials are coming in text boxes, i have kept a combo box also on the top to view by the phone number, if the phone number is entered the credential of the member comes, and also the navigation buttons that is first, previous, next and last.

    The main problem if i select phone number by combo box on the top, the navigation button do not continue from that part, even if i press next or previous it shows no records found.



    Please help

  2. #2
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,815
    What is the code behind the combobox? Is it setting Filter property? The combobox is unbound?

    Want to provide db for analysis?
    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
    drunkenneo is offline Competent Performer
    Windows XP Access 2007
    Join Date
    Jun 2013
    Posts
    199
    Attached is the MDBMDB.zip

  4. #4
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,815
    The combobox code is more complicated than necessary. Options:

    1. Set Filter property to filter the records
    Me.Filter = "contact_number=" & Me.Combo35
    Me.FilterOn = True

    2. Use bookmarks to move to desired record
    With Me.RecordsetClone
    .FindFirst "contact_number=" & Me.Combo35
    If Not .NoMatch Then Me.Bookmark = .Bookmark
    End With


    The expression in textbox to display full name will never show "Untitled" because value of the expression will never be Null. Concatenation of string with Null results in string. Assuming there won't be a last name without first name, try instead:

    =Nz([First_Name],"Untitled") & " " & [Last_Name]
    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
    drunkenneo is offline Competent Performer
    Windows XP Access 2007
    Join Date
    Jun 2013
    Posts
    199
    In the table since i am not using autonumber how can i display the recordnumber/total records as i navigate?

  6. #6
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,815
    The table shows that at the bottom.

    If you want to do that in form, it shows in the Navigation bar at bottom of form if you allow the bar.
    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.

  7. #7
    drunkenneo is offline Competent Performer
    Windows XP Access 2007
    Join Date
    Jun 2013
    Posts
    199
    Quote Originally Posted by June7 View Post
    The table shows that at the bottom.

    If you want to do that in form, it shows in the Navigation bar at bottom of form if you allow the bar.
    Please elaborate this meaning.

  8. #8
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,815
    Forms have an intrinsic navigation control. You can set it to display or not display. It shows the number of records and the record number in the set that has focus. The control shows at the bottom of forms. It looks much like the navigation control that shows at bottom of tables and queries.
    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.

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

Similar Threads

  1. Replies: 2
    Last Post: 02-27-2013, 03:01 PM
  2. Navigation Bar
    By hitesh_asrani_j in forum Forms
    Replies: 5
    Last Post: 10-24-2011, 10:19 AM
  3. Record/form navigation problem
    By kris335 in forum Access
    Replies: 1
    Last Post: 09-19-2011, 09:41 AM
  4. navigation form problem
    By stelioshania in forum Forms
    Replies: 1
    Last Post: 02-06-2011, 11:48 AM
  5. Help with navigation
    By phelpsville in forum Access
    Replies: 0
    Last Post: 04-16-2010, 07:33 PM

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