[Help] Visibility
How would i say..
If i had a textbox and a combo box
and i want there to be a button to proceed to the nxt form.
How would i make the button appear/enabled when the txtbox&com
x are filled? Like, so the button is disabled when they are empty and i want it to be enabled when they are filled in.
So would it be like,
[php]If TextBoxX2.Text & ComboBox1.Text = "" Then
ButtonX1.Enabled = False
Else
ButtonX1.Enabled = True
End If[/php]
If i had a textbox and a combo box
and i want there to be a button to proceed to the nxt form.
How would i make the button appear/enabled when the txtbox&com
x are filled? Like, so the button is disabled when they are empty and i want it to be enabled when they are filled in.So would it be like,
[php]If TextBoxX2.Text & ComboBox1.Text = "" Then
ButtonX1.Enabled = False
Else
ButtonX1.Enabled = True
End If[/php]
