Results 1 to 3 of 3

Thread: [Resolved] Multiple instances of ActiveX at runtime?

Threaded View

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    May 1999
    Location
    Sunny Southern Weather
    Posts
    406

    Question [Resolved] Multiple instances of ActiveX at runtime?

    I'd swear I've seen this done, but can't remember how.

    I'd like to create an array of an activex component at runtime so that I can access multiple instances of it.

    Something like this pseudo-code:
    Code:
    Dim AXarray() as myActiveX
    
    Private Sub Form_Load()
        ReDim AXarray(2)
    
        AXarray(0).load "myfile"
    
        AXarray(1).load "yourfile"
    
        AXarray(2).load "ourfile"
    End Sub

    Can someone please help?

    Thanks.
    Last edited by wayneh; Oct 20th, 2004 at 06:31 PM.

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