Results 1 to 10 of 10
  1. #1
    wes9659 is offline Advanced Beginner
    Windows 8 Access 2010 64bit
    Join Date
    Apr 2014
    Location
    Dover, Ohio
    Posts
    88

    Tab Navigation Form

    Can someone explain to me how to connect my main project tables together so they work when using a navigation form? I originally had them set up in a flat table and it worked great. However, I am trying to put it into more standard naming convention and split tables so I have more room to expand later. Original flat table form had close to limit of fields. I created two forms to practice and a tabbed navigation form. My questions is how do I get all the tabbed forms associated within of the navigation form to use the same record for all the tabs in the forms? I have attached a copy of data base for all to look at. Is my structure in relationship correct? I would love it if someone could make changes I tend to have a better learning curve if I can visualize what has occurred on form. Thanks everyone I have learned so much here.
    Attached Files Attached Files

  2. #2
    Z1nkstar's Avatar
    Z1nkstar is offline Competent Performer
    Windows 7 64bit Access 2013
    Join Date
    Mar 2014
    Location
    TX, USA
    Posts
    145
    DLDB.zip
    Here use my Database as a reference to see if you can find your problem.

  3. #3
    June7's Avatar
    June7 is online now VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,623
    I've never used Navigation form, don't like it.

    Your data structure is still not normalized - tblFamilyHistory has multiple similar name fields that are for the same data (Name1, Name2, Name3, ... Name21). This could cause issues for searching and filtering. Normalized would be a record for each relative (1-to-many relationship with tblClientData).

    tblPrimaryContact and tblSecondaryContact could be one table with another field for designating priority (another 1-to-many relationship).

    In tblClientData, field name for MaritalStatus is misspelled.
    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.

  4. #4
    wes9659 is offline Advanced Beginner
    Windows 8 Access 2010 64bit
    Join Date
    Apr 2014
    Location
    Dover, Ohio
    Posts
    88
    I tried to download the database from Zinkstar to review project and it started adding files etc and searching my files. Not sure if something was wrong with it deleted it from system. I do appreciate those that have offered help.

  5. #5
    June7's Avatar
    June7 is online now VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,623
    Because Z1nkstar has been a regular contributor to forum, I took a chance and downloaded and opened the db. No problems encountered.
    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.

  6. #6
    wes9659 is offline Advanced Beginner
    Windows 8 Access 2010 64bit
    Join Date
    Apr 2014
    Location
    Dover, Ohio
    Posts
    88
    By no means was I implying his data was bad. I think after looking at it it is because I am using 64bit. Click image for larger version. 

Name:	Screenshot 2014-07-09 21.07.38.png 
Views:	15 
Size:	107.9 KB 
ID:	17190Click image for larger version. 

Name:	Screenshot 2014-07-09 21.10.28.png 
Views:	15 
Size:	155.1 KB 
ID:	17189 I don't understand what triggered my malewarebytes

  7. #7
    June7's Avatar
    June7 is online now VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,623
    I just ran Debug Compile and get errors 'Method or data member not found.' Very odd.
    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
    wes9659 is offline Advanced Beginner
    Windows 8 Access 2010 64bit
    Join Date
    Apr 2014
    Location
    Dover, Ohio
    Posts
    88
    Iam glad I am not crazy lol thought it was my system I think it may be just 64 bit issue

  9. #9
    ItsMe's Avatar
    ItsMe is offline Sometimes Helpful
    Windows 7 64bit Access 2010 32bit
    Join Date
    Aug 2013
    Posts
    7,862
    If the install of Access is 64bit then you will need to employ ptrsafe.

    So something like
    Declare PtrSafe Function.....

    You can use an If Else statement to test for Access 64bit.

    If VBA7 then
    Declare PtrSafe Function.....
    else
    Declare Function.....
    End if


    http://msdn.microsoft.com/en-us/libr...ffice.14).aspx

  10. #10
    June7's Avatar
    June7 is online now VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,623
    I don't use API just to get username. I use VBA Environ function. Then the version is irrelevant.

    strUserName = Environ("USERNAME")
    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. form navigation
    By nitya in forum Forms
    Replies: 5
    Last Post: 07-09-2012, 07:17 AM
  2. Navigation Form
    By rts in forum Access
    Replies: 0
    Last Post: 03-28-2012, 09:44 AM
  3. Replies: 2
    Last Post: 08-18-2011, 10:20 PM
  4. Navigation Form
    By rkalapura in forum Forms
    Replies: 3
    Last Post: 07-29-2011, 11:33 AM
  5. Navigation Form
    By Roger81 in forum Forms
    Replies: 2
    Last Post: 07-21-2011, 01:33 AM

Tags for this Thread

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