A Andrej Tozon Nov 11, 2005 #2 Hi, Hide() method sets .Visible property to false, so there shouldn't be any difference. Andrej
C Claes Bergefall Nov 11, 2005 #3 Nothing. Hide is implemented like this: public void Hide() { this.Visible = false; } /claes
H Herfried K. Wagner [MVP] Nov 11, 2005 #4 what is difference between Hide and visible=false ? Click to expand... There is no difference. I usually use 'Visible' when dealing with controls and 'Show'/'Hide' when dealing with forms. However, that's my personal preference only.
what is difference between Hide and visible=false ? Click to expand... There is no difference. I usually use 'Visible' when dealing with controls and 'Show'/'Hide' when dealing with forms. However, that's my personal preference only.