Firewireguy
September 21st, 2005, 11:49 AM
Is there a tool available that will find all instances of a function call made from an object of a particular type instead of the name of the instance of an object?
So for example you could search for all calls to ExecInsert() on types of ARSPCovers, regardless of the name given to the particular instance of ARSPCovers.
As it stands, if anyone calls their instance something different from our rough guide standard of "rsPCovers" a standard search for "rsPCovers.ExecInsert()" wont pick it up and you've got a lot of searching to do on your own.
Searching for just "ExecInsert()" is not an option because every recordset we have will have calls to the same method.
I think this becomes more of an issue when we have recordsets called things like "ACachePCoverReinsPremiumLayer" where the name given to the instance of the type is often shortened for readability.
Our environment is VS C++ 6 on windows 2000 (soon to be xp).
Any information would be much apreciated.
So for example you could search for all calls to ExecInsert() on types of ARSPCovers, regardless of the name given to the particular instance of ARSPCovers.
As it stands, if anyone calls their instance something different from our rough guide standard of "rsPCovers" a standard search for "rsPCovers.ExecInsert()" wont pick it up and you've got a lot of searching to do on your own.
Searching for just "ExecInsert()" is not an option because every recordset we have will have calls to the same method.
I think this becomes more of an issue when we have recordsets called things like "ACachePCoverReinsPremiumLayer" where the name given to the instance of the type is often shortened for readability.
Our environment is VS C++ 6 on windows 2000 (soon to be xp).
Any information would be much apreciated.