473,386 Members | 1,846 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Combobox bug

I've setup a custom combobox control that allows a multikey selections. This
lets the user enter key presses and the combo scrolls to the matching
selection. I run into a bug when the user opens the dropdown and enters a
new character which the box auto scrolls to. The combobox displays the
selected value but when I reference the text and selected value properties
they still have the old values. Has anyone seen a problem like this before,
or have any suggested work arounds?

Thanks
Nov 21 '05 #1
5 1802
> I've setup a custom combobox control that allows a multikey selections.
This
lets the user enter key presses and the combo scrolls to the matching
selection. I run into a bug when the user opens the dropdown and enters a
new character which the box auto scrolls to. The combobox displays the
selected value but when I reference the text and selected value properties
they still have the old values. Has anyone seen a problem like this
before,
or have any suggested work arounds?

What had you than expect that it would display.
(In other words what are the old values, you cannot type in new values in)

I can think about something that you can maybe can mean with what you wrote,
however probably do you use an event to get those values or do you use a
button or even something else?

Cor
Nov 21 '05 #2
I've got a combo box (cboTown) with towns. For example 'New York', 'Orlando',
'San Diego'.
I've also got a button to display a message box with the cboTown.Text and
cboTown.SelectedValue. When I open the dropdown for the combo box and type
'S', the combo scrolls to 'San Diego'. When I open this a second time and
type 'N' the combo scrolls to 'New York'. I leave focus and the combo box is
displaying 'New York' when I click on the button it says the value of the
Text and SelectedValues are 'San Diego'. I'm confused since the combo is
displaying 'New York'. Any ideas?

"Cor Ligthert" wrote:
I've setup a custom combobox control that allows a multikey selections.
This
lets the user enter key presses and the combo scrolls to the matching
selection. I run into a bug when the user opens the dropdown and enters a
new character which the box auto scrolls to. The combobox displays the
selected value but when I reference the text and selected value properties
they still have the old values. Has anyone seen a problem like this
before,
or have any suggested work arounds?

What had you than expect that it would display.
(In other words what are the old values, you cannot type in new values in)

I can think about something that you can maybe can mean with what you wrote,
however probably do you use an event to get those values or do you use a
button or even something else?

Cor

Nov 21 '05 #3
Brian,

May I say it in otherwords, your selectedindex has another value than the
selectedvalue has?

This is than really strange,

While the combobox.textbox gives another string than is that textbox shows?

I knof this kind of behaviour from the selectionchangecommited, however you
did again not tell what events you are using for the combobox.

Cor
Nov 21 '05 #4
Here is my code for the combobox.

Option Strict Off
Option Explicit On

Imports Microsoft.VisualBasic
Imports System
Imports System.Drawing
Imports System.Windows.Forms

Public Class MultiKeyCombo
Inherits ComboBox

'Auto complete Combo variables
Private intSaveIndex As Integer

Private blnMultiKeySelect As Boolean = False

Public Property MultiKeySelect() As Boolean
Get
Return blnMultiKeySelect
End Get
Set(ByVal Value As Boolean)
blnMultiKeySelect = Value
End Set
End Property
Private Sub MultiKeyCombo_KeyUp(ByVal sender As Object, ByVal e As
System.Windows.Forms.KeyEventArgs) Handles MyBase.KeyUp

If MultiKeySelect Then
'AutoComplete(CType(sender, ComboBox), e)
Dim cbo As ComboBox = DirectCast(Me, ComboBox)
Select Case e.KeyCode
Case Keys.Back, Keys.Left, Keys.Right, Keys.Up, Keys.Delete,
Keys.Down, Keys.Tab, Keys.Shift, Keys.LShiftKey, Keys.RShiftKey, Keys.ShiftKey
Return
End Select
Dim ComboBoxText As String = cbo.Text

Dim FirstFound As Integer = cbo.FindString(ComboBoxText)

If FirstFound >= 0 Then
Dim FirstFoundItem As Object = cbo.Items(FirstFound)
Dim FirstFoundText As String = cbo.GetItemText(FirstFoundItem)
cbo.Text = FirstFoundText
cbo.SelectionStart = ComboBoxText.Length
cbo.SelectionLength = cbo.Text.Length

'Save the last index
intSaveIndex = FirstFound
Else
'If no match is found go back to the last index and select the
'whole text
If blnMultiKeySelect = True Then
'cbo.Text = cbo.Text.Substring(0, cbo.Text.Length - 1)

If intSaveIndex > 0 Then
cbo.SelectedIndex = intSaveIndex
End If
cbo.SelectionStart = 0
cbo.SelectionLength = cbo.Text.Length()
End If
End If
End If

End Sub

Private Sub MultiKeyCombo_Leave(ByVal sender As Object, ByVal e As
System.EventArgs) Handles MyBase.Leave

If MultiKeySelect Then

If MyBase.Text <> "" Then
'Check to make sure an invalid entry is not left in the
combobox
Dim cbo As ComboBox = DirectCast(sender, ComboBox)
Dim ComboBoxText As String = cbo.Text
Dim FirstFound As Integer = cbo.FindStringExact(ComboBoxText)
If FirstFound < 0 Then
cbo.SelectedIndex = intSaveIndex
Else
cbo.SelectedIndex = FirstFound
End If
End If
End If

End Sub
End Class

"Cor Ligthert" wrote:
Brian,

May I say it in otherwords, your selectedindex has another value than the
selectedvalue has?

This is than really strange,

While the combobox.textbox gives another string than is that textbox shows?

I knof this kind of behaviour from the selectionchangecommited, however you
did again not tell what events you are using for the combobox.

Cor

Nov 21 '05 #5
Brian,

I have tried your code.

Private Sub Form12_Load(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles MyBase.Load
Dim dt As New DataTable
dt.Columns.Add("text")
dt.Columns.Add("value")
dt.LoadDataRow(New Object() {"Brian", "1"}, True)
dt.LoadDataRow(New Object() {"Cor", "2"}, True)
dt.LoadDataRow(New Object() {"Armin", "3"}, True)
dt.LoadDataRow(New Object() {"Terry", "4"}, True)
MultiKeyCombo1.DataSource = dt
MultiKeyCombo1.DisplayMember = "text"
MultiKeyCombo1.ValueMember = "value"
End Sub

Private Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button1.Click
MessageBox.Show(Me.MultiKeyCombo1.SelectedValue.To String)
End Sub

When Armin is selected it shows 3 and when I select after that Cor it shows
2

However when I understand what you are after there are better
implementations of this. This one I made once for Bernie, however there are
much more on internet Bernie had a special problem.

http://groups-beta.google.com/group/...71d7cb3c?hl=en

At the end of the thread he tells it works.

Cor


Nov 21 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

13
by: Mr. B | last post by:
Here's the situation... You've a combobox with Items already added. Say they look like this (or even lines of text): 10-00-232 10-00-256 10-01-006 10-01-213 10-02-200
7
by: Nicolae Fieraru | last post by:
Hi All, I am trying to change the rowsource of a combobox when I click on it. I played with many events, associated with the form and the combobox, but still haven't figured out what is the way...
8
by: Zlatko Matię | last post by:
There is a form (single form) and a combobox. I want that current record of the form is adjusted according to selected value in the combobox. Cuurrent record should be the same as the value in the...
1
by: anonymous | last post by:
I've been trying to put a them, please help me out. Here's the major parts of my code: public Form1() { DataSet myDataSet = new DataSet("myDataSet"); DataTable testTable = new...
3
by: TT (Tom Tempelaere) | last post by:
Hay there, I'm writing my own DataGridComboBoxColumn because .NET 1.1 does not have one (I hope .NET 2.0 supplies one). I based it on this article:...
2
by: Don | last post by:
I've looked high and low for some code that will allow me to have a combobox with a flat borderstyle. I found a few examples, but nothing that was really usable for me. I had the following...
4
by: jon f kaminsky | last post by:
Hi- I've seen this problem discussed a jillion times but I cannot seem to implement any advice that makes it work. I am porting a large project from VB6 to .NET. The issue is using the combo box...
6
by: dbuchanan | last post by:
VS2005 I've been reading all the help I can on the topic (MSDN, other) but I can't make sense of this. Desired behavior; The user is to choose from the displayed list of the databound combobox...
1
by: polocar | last post by:
Ciao a tutti, leggendo qua e lą per il forum ho scoperto che non sono l'unico ad avere questo problema. Se si inserisce un controllo ComboBox in un form di C#, non č possibile impostare la sua...
5
by: Rich | last post by:
Hello, I have a search application to search data in tables in a database (3 sql server tables). I populate 2 comboboxes with with data from each table. One combobox will contain unique...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.