Results 1 to 4 of 4

Thread: Toolstrip combobox select highlight

Threaded View

  1. #1

    Thread Starter
    PowerPoster
    Join Date
    Sep 2005
    Location
    Modesto, Ca.
    Posts
    5,509

    Toolstrip combobox select highlight

    I have a toolstrip with a combobox. The Autocompletemode is set to "Suggest ". After the selectedindex is changed, I move to a different control. Like this,
    Code:
        Private Sub LastNameToolStripComboBox_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles LastNameToolStripComboBox.SelectedIndexChanged
            Dim indexnumber As Integer = Me.ProducersBindingSource.Find("ProducerId", Me.LastNameToolStripComboBox.Text.Substring(75))
            If indexnumber = -1 Then
                MessageBox.Show("Last Name Name Not Found!")
            Else
                Me.ProducersBindingSource.Position = indexnumber
                Me.FirstNameTextBox.Select()
                Me.LastNameToolStripComboBox.Text = Me.LastNameToolStripComboBox.Text.Substring(0, 65)
            End If
        End Sub
    The issue is this, if I select from the drop down list, it works the way a want.
    But, if I type something and then select from the "Suggest" list that pops up, the text in the Toolstrip Combobox remains highlighted, (blue). I can't figure out how to deselect the text.

    Any information will be appriciated
    Last edited by Joacim Andersson; Apr 27th, 2013 at 12:13 AM. Reason: "Unresolved"

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width