I was wondering about the difference between using a Control’s Hide() method compared to setting the Visible property to false.
Hide()
Visible
When would
It is really more about your preference here. The two methods will achieve the same result in the same way.
I prefer calling methods, which say what they're doing to change the state of objects. Some people prefer setting the properties of an object.