I am a newbie to Ms Access and I am sure this is a simple task for the professionals:
I am currently designing a web database (using MicrosoftAccess 2010) that i wish to publish via Microsoft Sharepoint.
There are 3 tables:
Table1: Level_table
Table2:UserDetails
Table3:Submission
The Table 1 and Table 2 are linked via the primary key of Level_table(Level_ID) which forms the foreign key on UserDetails table.
The form called User_Input contains 2 textboxes (Firstname andSurname)-txtFirstname,txtSurname, and 5 combo boxes (Level, standard, bronze,silver, gold)-cboLevel,cboStd,cboBr,cboSil and cboGold.
The table called UserDetails contain the following fields:User_ID-primarykey,Name, Designation,Level_Type,Level_ID-foreign key
The table Level_table contains the following fields:Level_ID (primary key),Level_Type
I have successfully populated the combo boxes with their respective selectionsbut I have been unable to populate the submission table with entries from theform using Macros.
The User_Input form is expected to save its entries to the submission tablebased on the headings (similar to the controls on the form):
ID (Autonumber),Firstname, Surname, Level, standard, bronze, silver, gold.
I have successfully done this using VBA but VBA is not compatible with AccessServices for publishing to Sharepoint and hence the need to use Macros to get this to work.
Thank you.