Results 1 to 13 of 13
  1. #1
    janm is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Aug 2012
    Posts
    8

    form info does not go to table


    I'm new at this, and all the other posts are above my head, and I only need something very simple. All I want to do is create a mailing list to print envelopes using Word Mail Merge. Only need: Name, Address, CityStateZip - just 3 columns in the table (city, state, zip all on the same line). I think the table is set up correctly with the columns, but I don't want to type directly onto the table. I want to type 1 single record at a time on a form (ie: once i type a record and click enter, i want it to go to the table and a new blank form to appear. I tried to do the form wizard, but the records I type into the form won't appear on the table. Pls help! Thanks! Jan

  2. #2
    June7's Avatar
    June7 is online now VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,931
    The form is bound to table and textboxes are bound to fields of the form RecordSource?

    Record entry/edit on bound form is committed to table when form closes, move to another record, or run code.

    What is the code for the Enter button?

    BTW, I deleted your other thread that duplicates this topic.
    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
    janm is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Aug 2012
    Posts
    8
    in the meantime i found that if i clicked the refresh button on the table, the form info came up on the table. So do you always have to click "refresh" on the table to be able to see the new records?

  4. #4
    janm is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Aug 2012
    Posts
    8
    I always click "enter" after I've typed a new record in the form, so that the form fields are empty for the next entry

  5. #5
    June7's Avatar
    June7 is online now VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,931
    Don't understand. Do you have the table open as well as the form that is bound to the table?

    What 'enter' are you clicking? Are you using the form navigation 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.

  6. #6
    janm is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Aug 2012
    Posts
    8
    yes, well as soon as I create the form, it opens over the table as a new "tab" (looks like a tab on an old-fashioned folder). So both are open, but I can click on whichever "tab" to get to the table or the form. So on the form, I type my info into the three boxes I've made- using the keyboard key called tab. (safter I've typed in the info into all three boxes, I press my keyboard key "enter", and the boxes on the form are now empty, i'm assuming because the record went to the table and the empty form boxes are waiting for me to type in new information. But if I look on my table, there's no new record. But if i click refresh on the table menu at the top, the record(s) I typed on the form finally show up on the table. I'm just trying to confirm whether I always have to click refresh to get the info to finally show up on the table. Or am I doing something wrong? Thanks

  7. #7
    janm is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Aug 2012
    Posts
    8
    clarification: I use the tab key on my keyboard between typing into each of the three boxes, then the enter key on my keyboard after I've finished that record and am ready to type the next one

  8. #8
    June7's Avatar
    June7 is online now VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,931
    Yes, if you have the table open, it must be refreshed to display the new record. Why do you have table open? Why not interact with data only through form? Are you the only user of this db?

    The form is 'blank' because you have moved to a 'NEW' record. Is the form DataEntry property set to Yes?
    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.

  9. #9
    janm is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Aug 2012
    Posts
    8
    I'm the only one who uses this database. Ok, so after I've created the form from the table, I should close the table? Also, where do i find the form DataEntry property?

  10. #10
    June7's Avatar
    June7 is online now VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,931
    What do you mean by 'created the form from the table'. You mean the form already exists and you open it? How are you opening the form?

    On the Data tab of the Properties dialog.
    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.

  11. #11
    janm is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Aug 2012
    Posts
    8
    I open access, then click "blank database". Then I name my 3 columns: Name, Address, City/state/zip.Then I save it with a name ("mailing 8-8-12 for example). Then I click create .... form .... blank form. The field list opens on the right side of the new window. I click on the correct table in the menu. The fields I created in the table come up. I drag the 3 field I want to use over to the blank form. Then click "form views" and start typing in the boxes. AFter I've finished one address, as I said I press enter on the keyboard and type the next one. etc. I want to use the database I create in Word for a mail merge to address envelopes. Is there a better way?

  12. #12
    June7's Avatar
    June7 is online now VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,931
    You should only be doing "click blank database" once. This creates a database that can later be opened and worked with again. Create database, create the objects (tables, queries, forms, reports), enter data. When finished for this work session, close the db. Tomorrow you can open it again and everything you built is available. However, the table does not need to be open. Just open the form and enter more data, run reports.

    If you want each mailing in its own database, no need to build everything again. Make copy of 'template' database with a new name. However, a major concept of relational database is to avoid duplication and that includes duplicate copies of the same db structure. Put all data in one db file and filter records to work with only those needed for current session.
    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.

  13. #13
    janm is offline Novice
    Windows 7 64bit Access 2010 64bit
    Join Date
    Aug 2012
    Posts
    8
    OK I see! Thank you so much for your patience and help!!!!

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

Similar Threads

  1. Populate a table with info from a form
    By JudyK in forum Forms
    Replies: 13
    Last Post: 02-08-2012, 07:32 PM
  2. Replies: 1
    Last Post: 01-25-2012, 06:46 PM
  3. Update form with table info
    By Hannah's momma in forum Forms
    Replies: 0
    Last Post: 03-23-2011, 12:20 PM
  4. Replies: 9
    Last Post: 02-15-2011, 03:05 PM
  5. Replies: 3
    Last Post: 01-31-2011, 11:47 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