Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
540
Getting the value of combo and textbox values users entered
posted

I'm creating a WinForm using an UltraToolbarsManager and using VB.net

 I've created the Toolbar with both combo boxes and text boxes and also a Button.

 I'm able to populate the combo boxes with a value list of the options I want to give the user.

When the user clicks the button on the toolbar I'd like to identify the values the user selected in the combo box and with that value supply the textbox in the toolbar with a value.

For example:
If me.ultratoolbarsmanager1.toolsbars(0).tools("Combo1").selectedtext = "Major" then

     me.ultratoolbarsmanager1.toolsbars(0).tools("TextResults").text = "Version 2"

end if

I know the above code is not accurate, but hope that shows what I'm trying to accomplish.