Calling Constructor of the Base Class

gfvalvo:
Thanks. So, it appears that the answer is that there is no way to dynamically modify the parameters passed to the base class constructor during the execution of the derived class constructor. Correct?

Just provide an init() function, or something similar, in the base class that you can call to set the parameters. The base class constructor can call that same init() function so you don't duplicate code.
Regards,
Ray L.