If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > PC based Database Applications > Microsoft Access > In need of some assistance with Access DB

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 07-27-11, 13:10
ctown ctown is offline
Registered User
 
Join Date: Jul 2011
Location: Chicago
Posts: 37
Question In need of some assistance with Access DB

I’ve got most of the database built but still having issues with saving data that’s either entered or edited. This is an employee DB which stores names, undergrad school, undergrad degree, grad year (same for graduate), and a list of skills to add for each employee based on their resume. I’ve created 3 different forms: to display employees already entered, to edit employee information, and a list of skills form.

This list of skills doesn’t seem to save to the employee its attached to given I've included a drop down linked to a contacts table. Also, I’m trying to figure out if I should create another form for the add new employee. My co worker who is more knowledgeable of Access than I am has been helping me but he’s on vacation for another week and I need to get this DB done. I could use help on this if anyone has the time to look over the DB and answer any questions I may have. It would be greatly appreciated. Let me know what additional information you need or screenshots for a better understanding of whats been add to the DB thusfar.
Reply With Quote
  #2 (permalink)  
Old 07-27-11, 15:25
Sinndho Sinndho is offline
Registered User
 
Join Date: Mar 2009
Posts: 3,446
You can use the same form for adding employees as the one you use for editing data of the existing ones, it's just a parameter when you open the form that needs to be changed:
Code:
    '
    ' Open a form for editing existing records.
    '
    DoCmd.OpenForm "Form1", , , , acFormEdit
    '
    ' Open a form for adding new records.
    '
    DoCmd.OpenForm "Form1", , , , acFormAdd
You can also act on several properties of the form: DataEntry, AllowAdditions, AllowEdits. See Access help for details.
__________________
Have a nice day!
Reply With Quote
  #3 (permalink)  
Old 07-27-11, 17:50
ctown ctown is offline
Registered User
 
Join Date: Jul 2011
Location: Chicago
Posts: 37
Talking

Quote:
Originally Posted by Sinndho View Post
You can use the same form for adding employees as the one you use for editing data of the existing ones, it's just a parameter when you open the form that needs to be changed:
Code:
    '
    ' Open a form for editing existing records.
    '
    DoCmd.OpenForm "Form1", , , , acFormEdit
    '
    ' Open a form for adding new records.
    '
    DoCmd.OpenForm "Form1", , , , acFormAdd
You can also act on several properties of the form: DataEntry, AllowAdditions, AllowEdits. See Access help for details.
Thanks, this helps with one of the issues I'm having. I appreciate the reply.
Reply With Quote
  #4 (permalink)  
Old 07-27-11, 18:26
Sinndho Sinndho is offline
Registered User
 
Join Date: Mar 2009
Posts: 3,446
You're welcome!
__________________
Have a nice day!
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On