Results 1 to 3 of 3

Thread: List Box Problem

  1. #1

    Thread Starter
    Addicted Member kikelinus's Avatar
    Join Date
    Nov 2000
    Posts
    219

    Exclamation

    Say i wanted to do something like this: I have 10 checkboxes,and when one checkbox is selected, a message box appears. How do I do that?

  2. #2
    Fanatic Member
    Join Date
    Aug 2000
    Posts
    736
    You could make your checkboxes part of a control array. Then the code would be:

    Code:
    Private Sub Check1_Click(Index As Integer)
        MsgBox "A Check Box was selected"
    End Sub

  3. #3

    Thread Starter
    Addicted Member kikelinus's Avatar
    Join Date
    Nov 2000
    Posts
    219

    Thumbs up

    Thanks!...

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