My Access adp application generates vba scripts (reading Excel worksheet and updating SQL server tables) and adds the generated scripts to a Module. The procedure names are stored in a table. I need to call these procedures on demand.
I could easily do this in Visual Foxpro using foxpro's & command. C/C++ provides pointers do the same thing.
Is there a way in VBA to acheive this functionality?
Not knowing how to do it, I am using lengthy select case statement for matching procedure names and than calling the procedure. Every time I create a new script, I have to modify the calling procedure's select case statement.
Thanks
Ashok



Thanks
Ashok