M
Mark
I have two questions. In the past, I've created several
front/back end databases that use temporary tables to hold
some of the data manipulation. In the past, I ran into
the problem of multiple users accessing the data, causing
various errors and problems.
I resolved this by placing the temporary tables in the
front end so there wasn't a sharing problem and then made
sure the routines cleaned up the temp tables and then did
a compact/repair when the database is closed. This can be
problematic if the user has multiple sessions of the front
end open though.
What I would like to do would be to create temporary files
in the Windows TEMP directory and place the temp tables
there. That way each session would have a
Could someone point me to an example that show me how to
do the coding for something like this?
The second question regards calling subroutines. I know
how to call a subroutine in normal VB coding. The kink is
that I want to read a record from a table that contains
the name of a subroutine to run. The code to loop through
a table is easy, but how do you make the call to the
subroutine itself?
Thank you in advance.
Mark
front/back end databases that use temporary tables to hold
some of the data manipulation. In the past, I ran into
the problem of multiple users accessing the data, causing
various errors and problems.
I resolved this by placing the temporary tables in the
front end so there wasn't a sharing problem and then made
sure the routines cleaned up the temp tables and then did
a compact/repair when the database is closed. This can be
problematic if the user has multiple sessions of the front
end open though.
What I would like to do would be to create temporary files
in the Windows TEMP directory and place the temp tables
there. That way each session would have a
Could someone point me to an example that show me how to
do the coding for something like this?
The second question regards calling subroutines. I know
how to call a subroutine in normal VB coding. The kink is
that I want to read a record from a table that contains
the name of a subroutine to run. The code to loop through
a table is easy, but how do you make the call to the
subroutine itself?
Thank you in advance.
Mark