Hi all
What is the best method of adding a new line of code in this scenario:
Every instance of:
ivResult.Visible = True
I want to add:
ivSound.Visible = True
So the code would look like:
ivResult.Visible = True
ivSound.Visible = True
There are many instances of line (ivResult.Visible = True) which is why a manual procedure would take a very long time.
Thanks
What is the best method of adding a new line of code in this scenario:
Every instance of:
ivResult.Visible = True
I want to add:
ivSound.Visible = True
So the code would look like:
ivResult.Visible = True
ivSound.Visible = True
There are many instances of line (ivResult.Visible = True) which is why a manual procedure would take a very long time.
Thanks