Results 1 to 2 of 2

Thread: Combo box in an array

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Jan 2001
    Location
    Denmark
    Posts
    1,049

    Combo box in an array

    I have two combo boxes in an array, named combo1(0) and combo1(1). How do I make different events when they are clicked?
    The function is
    private sub combo1_click(index as integer)

    I need to have an array

  2. #2
    Lively Member
    Join Date
    Jul 2001
    Location
    NY
    Posts
    89
    VB Code:
    1. Private Sub Combo1_Change(Index As Integer)
    2.     If Index = 0 Then
    3.         'combo1(0) clicked
    4.     ElseIf Index = 1 Then
    5.         'combo1(1) clicked
    6.     End If
    7. End Sub

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