Hi there....i got an application that runs perfect on a standalone PC.....
But now the app has to run on a server with multiple users using it......
I get a lot of errors now....
When the code benath is runne i get an error 2501 at the command DoCmd.RunCommand acCmdSave
Anyone got an idea how this comes........?
Private Sub cmdNieuwDocument_Click()
'------------------------------------------------
'- De tabel waarin alle beschikbare sjablonen -
'- staan wordt geleegd -
'------------------------------------------------
DoCmd.OpenQuery "qryTabelSjabloonLegen"
stDocName = "frmNieuwDocument"
DoCmd.RunCommand acCmdSave
DoCmd.OpenForm stDocName, , , , acFormAdd
End Sub
tnx......
But now the app has to run on a server with multiple users using it......
I get a lot of errors now....
When the code benath is runne i get an error 2501 at the command DoCmd.RunCommand acCmdSave
Anyone got an idea how this comes........?
Private Sub cmdNieuwDocument_Click()
'------------------------------------------------
'- De tabel waarin alle beschikbare sjablonen -
'- staan wordt geleegd -
'------------------------------------------------
DoCmd.OpenQuery "qryTabelSjabloonLegen"
stDocName = "frmNieuwDocument"
DoCmd.RunCommand acCmdSave
DoCmd.OpenForm stDocName, , , , acFormAdd
End Sub
tnx......