I have a table containing the names of Subroutines and an Enabled field.
When i reference the table I want only the enabled subroutines to run.
Sample code out of my head:
Sub runEnabled_Routines
dimbd as database
dim rst as recordset
set db = currentdb
set rst = db.openrecordset("tbl_Enabled_Routines")
with rst
When i reference the table I want only the enabled subroutines to run.
Sample code out of my head:
Sub runEnabled_Routines
dimbd as database
dim rst as recordset
set db = currentdb
set rst = db.openrecordset("tbl_Enabled_Routines")
with rst