I am writing a program which is a front-end for a MS Access database. In my program there is a number of times where the user can move through all of the records. As it is now I have repeated the same basic code for the movement buttons, with the just changing the table name that it
looks for. ex ("rs!project_name" where project_name is a table name) Is it possible to pass the table name into a function so that I only need the code once in my program?
ex ("rs!variable_name") Any suggestions would be great