Hi,
Access 2010, split database, multi user (no more than 10) at a time, they access through the front end, the database is saved as accde format
I have a user form which is used to log absence records at my place of work, the form can be accessed by clicking a button from the main form, or from clicking a specific existing absence from a popup form, I am having problems with the form loading and what it is displaying
if the form is loaded through the main form button and the inputter enters the name and then the system finds a record that matches (matched records are shown on a sub form) it will ask the user if they wish to edit am existing record, they click yes and they are able to edit the existing record from the list in the sub form - this seems to work fine,
frmabsencelogging - data entry yes, only filter is No, source is tblabsencelogging - all the records
if I try to click from a popup form the frmabsencelogging is blank
popup form click event
I cant seem to get the 1 form to work with both uses well, any suggestions welcome
Hope this is of use, Rob.
Access 2010, split database, multi user (no more than 10) at a time, they access through the front end, the database is saved as accde format
I have a user form which is used to log absence records at my place of work, the form can be accessed by clicking a button from the main form, or from clicking a specific existing absence from a popup form, I am having problems with the form loading and what it is displaying
if the form is loaded through the main form button and the inputter enters the name and then the system finds a record that matches (matched records are shown on a sub form) it will ask the user if they wish to edit am existing record, they click yes and they are able to edit the existing record from the list in the sub form - this seems to work fine,
frmabsencelogging - data entry yes, only filter is No, source is tblabsencelogging - all the records
if I try to click from a popup form the frmabsencelogging is blank
popup form click event
Code:
stdocna = "frmOpenCasesMainPagebyOPS"
stDocNa1 = "frmmainpage"
stDocNa2 = "frmAbsencelogging"
stlinkcriteria = "[SicknessReference] = " & Me![SicknessReference]
DoCmd.OpenForm stDocNa2, , , stlinkcriteria
DoCmd.Close acForm, stdocna
DoCmd.Close acForm, stDocNa1
I cant seem to get the 1 form to work with both uses well, any suggestions welcome
Hope this is of use, Rob.