PDA

Click to See Complete Forum and Search --> : TextBox.Show VS TextBox.Visible=True


gRob_AndDerSon
Jun 14th, 2007, 11:12 PM
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:

petevick
Jun 15th, 2007, 02:02 AM
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