I have a table full of telecoms. circuits. When it comes to rearrange a circuit, i have been making a temp. table, appending the record into it, and opening a form for the user to confirm the current config. before modifying it.
That has been working fine, but now there is more than one user, and of course, the second user can’t create the temp. table when the first user is using it.
So, in the code to create the temp. tables, i now name them according to the circuit number and time, e.g. tblTemp_100010_040501. This ensures that it works within a multi-user envirinment.
My problem now is how to set the recordsource of the form dynamically, i.e. to open the form using the temp. table that has just been created.
I’ve tried using Forms!frmMyForm.recordsource = tblMyTempTable before using the Docmd.openform but i get told that you can’t do this whilst the form is not open.
Any ideas greatly appreciated.