Results 1 to 5 of 5

Thread: [2005] Simple Combobox problem

Threaded View

  1. #1

    Thread Starter
    Lively Member
    Join Date
    May 2007
    Posts
    73

    [2005] Simple Combobox problem

    I just want to add each combobox item into a Toolstrip ComboBox. The next sourcecode will not work:


    Code:
        Private Sub CopyBoxItems()
    
            Me.ToolStripBox.Items.Clear()
    
            For i As Integer = 0 To FilterBox.Items.Count - 1
    
                Me.ToolStripBox.Items.Add(Me.FilterBox.Items.Item(i))
    
            Next
    
        End Sub
    Last edited by fatihpk; Aug 17th, 2007 at 09:33 AM.

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