I'm having an odd problem the first time my list is dropped down. To best see it, do this: - add a ComboBox to your form. - added 2 items to the list, say "First" and "Second". - using all other default values, set the RowHeight to 50 (default is 25) and set the SelectedItemIndex to 1. Run the app and drop down the list. The list will show the 2nd item "Second&by bobg - ComboBox
Hello, I have a Keyboard control similar to your example only I have added buttons to move the blinking vertical cursor bar in the roundTextBoxMultiline control left and right. I'm moving the cursor by making calls to get and set the text selection, not elegant, but it works. The problem is when I want to move the cursor multiple characters at a time, the cursor disappears when I start moving thby bobg - Keyboard Control
Hello Vladimir and Gabriel I seem to be having the same difficulty. If I have many items in the list and scroll to the bottom of the list, then replace the list with a shorter list, nothing is displayed until I click on the list. I have tried setting the SelectedItemIndex to 0 in hopes for forcing the first item in the list to be displayed, but no luck. I've tried calls to Refresh() and Updatby bobg - TouchListLite
If the string that I am assigning to RoundTextBoxMultiline.Text has a comma in it that is not followed by a space, then the string that ends up in the Text field has a space after the comma. Example: RoundTextBoxMultiline1.Text = "1,2"; strOut = RoundTextBoxMultiline1.Text; results in strOut being set to "1, 2" Also, if I assign a string with multiple space charactby bobg - RoundTextBoxMultiline
The final version is going into validation around 15 December.by bobg - ComboBox
Any estimate when this fix will be available? Our delivery date is approaching and I'll have to apply the workaround mentioned above for many ComboBoxes in our app.by bobg - ComboBox
I see that you can type "Enter" into the MappedKey field, and I have found out that there are other words that can be typed as well, like "Multiply", "Subtract", and others. Is there a complete list of these "user-entered" options that are not in the ComboBox of the MappedKey property?by bobg - Keyboard Control
I'm having the same issue. I can't find an easy way to get the semicolon ";" character returned by the keyboard (as well as a number of other symbols)by bobg - Keyboard Control
One other question: Is there any way to align the text in a RoundTextBox?by bobg - RoundTextBox
Thanks for the response. Your workaround, however, isn't easily implemented in my design. I have a numeric keypad form that is called when any RoundTextBox is "clicked". A number of parameters are passed, one of them is the RoundTextBox that is being edited. I also pass a min and max allowable value, number of allowed decimal places, etc. The keypad form does no know the name of thby bobg - RoundTextBox
I have created an event handler for the TextChanged event. If I set the text programmatically {rtbComments.Text = "sample";}, the text changes in the box but my event handler never gets called. Any suggestions?by bobg - RoundTextBox
I am trying to select a string from the Items list using the SelectedValue property. It seems like if I set the SelectedValue property with my desired string that it should find that string in the Items list and select it. When the ComboBox is displayed, my string should be the one selected and the SelectedIndex should be set accordingly. This is not the case. At run-time, if I set SelectedVaby bobg - ComboBox
Any estimate on when the comboBox bug poster by EM above will be fixed?by bobg - ComboBox
Thanks, that worked for the RoundTextBox. TLabel has the same problem. Any idea when a fix will come for TLabel?by bobg - RoundTextBox
At run-time, if I set the Enabled property to false, the text does not change color to look disabled. If I try to change the ForeColor manually at runtime, it does not change. The only way the ForeColor gets changed is if I also change the BackColor to something different at the same time. TLabel also behaves like this. Any suggestions?by bobg - RoundTextBox