I apologize if this is in the wrong place, but this is my first post and I have quite a specific issue that I hope someone else has experienced before.
Here is a little background:
I have created an access database to use as our companies' CRM, its an access front end and SQL backend.
Over the last few months, I have converted most queries to pass through queries due to the performance increase.
We have also just migrated to a remote desktop environment from the more traditional set up of a local server and workstations.
The issue:
Now we are using RDS there is only 1 central installation of MS access and my accdb file that all users open as they log into RDS (I have been told this is normal)
However, when VBA code fires to change the querydef of a pass-through query, it changes the query globally for all users, so users are sometimes presented with incorrect results.
Strangely, I also use TempVars to store things, but these DO stay unique for each user.
Example:
The users have a daily tasks screen on their home page, the event onload on the home screen sets the querydef to include the parameter for that user's ID number, but as users log in, previously logged in users end up seeing the tasks for the last user to log in.
I hope all this makes sense and I hope someone can help