Unnecessary var / objects

Shay

Well-Known Member
Licensed User
Longtime User
Hi

now that the code is too big + too many modules / images etc..
is there a way (I think it was implicit command in VB)
to find why objects / var / images are not been used
so I can remove it

thanks
 

Creaky

Member
Licensed User
Longtime User
The editor automatically highlights every instance of selected text. So try selecting the vars where you declare them, then look at the vertical scrollbar to see where the same var is being used. If there are no cyan blocks/lines in the vertical scrollbar, that var is not being used in the code. :)
 
Upvote 0
Top