Results 1 to 18 of 18

Thread: multi vars?

Threaded View

  1. #5
    PowerPoster RhinoBull's Avatar
    Join Date
    Mar 2004
    Location
    New Amsterdam
    Posts
    24,132

    Re: multi vars?

    Why don't you simply call that click event and pass Index (if you do have control array) ?
    Here is a quick sample:
    VB Code:
    1. Private Sub Command1_Click()
    2.     WebBrowser1_DownloadBegin 0
    3. End Sub
    4.  
    5. Private Sub WebBrowser1_DownloadBegin(Index As Integer)
    6.     Select Case Index
    7.         Case 0, 1
    8.             MsgBox "Start downloading... Please wait."
    9.     End Select
    10. 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