Quote:
Originally Posted by nico5038
Access will support multiple users when the database is set in "Shared" mode. (Default setting in the Database Options form)
The best thing is however to use a "splitted" database. Just check the Helpfile (F1) for the Database split utility. This will allow to change the front-end without havng to mind the production data in the tables.
Nic;o)
Hello sir,
This is Jason Again.....Thanks for all the suggestions u have given so far....I have a question.....
I have 2 forms and say the 1 st form is the "EMP" ....
2nd form is the "FORM1"....
so i have a button on "FORM1" which was cofigured through the Wizard to open "EMP" FORM....But this "FORM1" in the background should close as i move to the "EMP" form....
This is how i changed the code...Its not working....gives this error....
Wrong number of arguments or invalid property assignment....
Private Sub Command1_Click()
On Error GoTo Err_Command1_Click
Dim stDocName As String
Dim stLinkCriteria As String
Dim stDocName1 As String
Dim stLinkCriteria1 As String
stDocName = "Emp"
DoCmd.OpenForm stDocName, , , stLinkCriteria
stDocName1 = "Form1"
DoCmd.Close stDocName1, , , stLinkCriteria1
Exit_Command1_Click:
Exit Sub
Err_Command1_Click:
MsgBox Err.Description
Resume Exit_Command1_Click
End Sub
Please help waiting for ur reply.....
Thanks...
Jason...