Visual Basic Code , VB.NET Code, VB Code
  Home   :  Code   :  Forums   :  Submit   :  Mailing List   :  About   :  Contact


Combobox and MaskTextBox in Visual Basic


Combobox and MaskTextBox in Visual Basic

Author
Message
bunnyali2011
bunnyali2011
Forum God
Forum God (1.2K reputation)Forum God (1.2K reputation)Forum God (1.2K reputation)Forum God (1.2K reputation)Forum God (1.2K reputation)Forum God (1.2K reputation)Forum God (1.2K reputation)Forum God (1.2K reputation)Forum God (1.2K reputation)

Group: Forum Members
Posts: 4, Visits: 6
Well I have a combobox with 3 items namely: Product Size and Cost.



I have also a maskedtextbox.



If I select "Product" and "Size" on the combobox, I want to disable the maskedtextbox from filling, how must I do it?
Perrie
Perrie
Forum God
Forum God (3.8K reputation)Forum God (3.8K reputation)Forum God (3.8K reputation)Forum God (3.8K reputation)Forum God (3.8K reputation)Forum God (3.8K reputation)Forum God (3.8K reputation)Forum God (3.8K reputation)Forum God (3.8K reputation)

Group: Forum Members
Posts: 13, Visits: 308
in the ComboBox_OnClick sub add code like this

If combobox.listindex>-1 then

textbox.enabled=false

else

textbox.enabled=true

end if

whenever the user clicks on the combobox to change its value the textbox will be diabled if an item in the combobox list is selected. If in another section of your code somethiong resets or clears the combobox be sure to add in code to re enable the textbox.

Perrie
Perrie
Forum God
Forum God (3.8K reputation)Forum God (3.8K reputation)Forum God (3.8K reputation)Forum God (3.8K reputation)Forum God (3.8K reputation)Forum God (3.8K reputation)Forum God (3.8K reputation)Forum God (3.8K reputation)Forum God (3.8K reputation)

Group: Forum Members
Posts: 13, Visits: 308
Oops sorry didnt read your post properly

Change the If Staetment to read

If Combobox.listindex >-1 and Combobox.listindex<2 then

that will refine the lockout to the 1st 2 items on the list but leave the texbox open on the 3rd item

bunnyali2011
bunnyali2011
Forum God
Forum God (1.2K reputation)Forum God (1.2K reputation)Forum God (1.2K reputation)Forum God (1.2K reputation)Forum God (1.2K reputation)Forum God (1.2K reputation)Forum God (1.2K reputation)Forum God (1.2K reputation)Forum God (1.2K reputation)

Group: Forum Members
Posts: 4, Visits: 6
Yes I did it dear...it works thank you very much you are great!Smile
GO


Similar Topics


Reading This Topic


Login
Existing Account
Email Address:


Password:


Social Logins

Select a Forum....

















A1VBCode Forums


Search