Useless variables/Subs checking

  • Thread starter Thread starter Steffen Loringer
  • Start date Start date
S

Steffen Loringer

Hi all,

are tools available to check my source code for unused stuff? Like
variables once defined for test purposes or Sub's which are never called?

Thanks
Steffen
 
...
are tools available to check my source code for unused stuff? Like
variables once defined for test purposes or Sub's which are never called?

Hi,

Not sure, be good if so - but you could just name all of these temporary
variables slightly differently, ie,

tempMyVariable
testMyVariable

then when everythings fine do a search for 'temp' or 'test' and check each
of the results....bit of a bugger on a larger project admittedly..

Regards

Rob
 
Back
Top