I
ingle.kevin
I have an application that just BEGS for the ability to change the
name of a code module at runtime. For instance, let's say I have
parameters for 100 different clients but all need to be handled the
same. I would want to store the parameters and client-specific
procedures in separate modules (Client1, Client2, etc.). The meat-and-
potatoes of the code is in another module (let's call it Module1). The
code within Module1 always calls for the client-specific stuff as
Module2.
So, at runtime, I click a command button on a switchboard, the code
behind the button renames the appropriate client-specific module
(Client1, Client2, etc.) to the generic name I need in the code
(Module2)
Am I asking too much, or is there a way to make this work?
Thanks
name of a code module at runtime. For instance, let's say I have
parameters for 100 different clients but all need to be handled the
same. I would want to store the parameters and client-specific
procedures in separate modules (Client1, Client2, etc.). The meat-and-
potatoes of the code is in another module (let's call it Module1). The
code within Module1 always calls for the client-specific stuff as
Module2.
So, at runtime, I click a command button on a switchboard, the code
behind the button renames the appropriate client-specific module
(Client1, Client2, etc.) to the generic name I need in the code
(Module2)
Am I asking too much, or is there a way to make this work?
Thanks