TextBox.Show VS TextBox.Visible=True
Just want to ask whats the difference between:
-----------------------------------------------------
textbox.show and textbox.visible = true
and
textbox.hide and textbox.visble=false
-----------------------------------------------------
Are they the same thing...:confused:
Re: TextBox.Show VS TextBox.Visible=True
Hi,
I have only ever used show/showdialog on forms, and the visible property on all other controls.
If you use visible, you can test the state, i.e. if textbox.visible then, which you can't really do with show.
The help file may explain more
Pete