Recent content by newbieaccess

  1. N

    Appending or Updating data query

    Thank you for your help :) Question how do I say in the query update if there's already a member. Would I do I join on the new temp table with the master table? So I would have 6 total queries? 3 update and 3 append then I put in 1 macro? Thanks again :)
  2. N

    Appending or Updating data query

    Hi all - I'm working on an access db that contains 3 tables 1) Member Table 2) Address Table 3) Contracts Table Then I have a form that pulls them all in together with subforms as the Address & Contracts attached to the Member Each week someone goes out to another source and pulls in new...
  3. N

    highlight text box on a form

    Thank you - I think I got it :)
  4. N

    Only show the form

    Is there a way for us to hide all of the tables, queries to only show the form for the person doing data entry? Thank you
  5. N

    highlight text box on a form

    this is probably a really stupid ? but how do I know the name of the control? I just went to property sheet at the form level and put in the code from the ... next to On Got Focus
  6. N

    highlight text box on a form

    Thank you, I tried it but it's still black. I went to properties On Got focus then Code builder and copied in: Private Sub Form_GotFocus() Me.ControlName.ForeColor = 65535 'Yellow End Sub Private Sub Form_LostFocus() Me.ControlName.ForeColor = 0 'Black End Sub But, it's not working? Am I doing...
  7. N

    Form with subforms

    The links you sent were really helpful - I appreciate it :)
  8. N

    highlight text box on a form

    Is there a way to change the highlighting in a form when the user tabs thru their choices to yellow rather than black? Thank you!!!!
  9. N

    Form with subforms

    Thank you - I'll go thru them now :) I appreciate your help
  10. N

    Form with subforms

    thank you - there are relationships built, but they are just one -to - many? Do we need any cascading or referential integrity? -- thanks again!
  11. N

    Form with subforms

    I think he created the relationship but doesn't appear to have created a parent-child link? Can you do this after the fact?
  12. N

    Form with subforms

    how do I know where the primary keys and foreign keys are? I didn't create the form? When we tried to test it by changing the name in the master section it didn't change it in the other two?
  13. N

    Form with subforms

    Thank you for such a quick reply. I'm still a little confused. Here's an example: Company A is in Master, Funding & Contacts the Funding and Contacts tables have a 1 to many relationship with the Master because they can have multiple records. So, Company A down the road gets acquired or they...
  14. N

    Form with subforms

    Sometimes a Company can be acquired and we move to the acquired name so in the Master we would change it and would like to change it in the other 2 tables as well?
  15. N

    Form with subforms

    Initially we added in the autonumbering but how do you pull in information from the other tables using that logic because there is a 1 to many relationship Example Master Table only has 1 row per Customer then there's a funding table with many events occuring per customer and another table of...
Back
Top Bottom