Announcement

Collapse
No announcement yet.

Number of Hooks Allowed?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Number of Hooks Allowed?

    Hello, when using the API in Visual Basic 6 with the following calls:

    Dim WithEvents esignal As IESignal.Hooks
    esignal.SetApplication ("accountname")
    Set esignal = New IESignal.Hooks

    Can more than one hook be opened within an application (eg by using more sets of the above statements with esignal1, esignal2, etc objects)?

    If so, can other instances of the application run on the same machine?

    If so, do I need to use a different object name in each application?

    Thank you for a reply

  • #2
    You can only have 1 hook object per application. However, you can run multiple instances of the application on the same machine and the hook names are irrelevant.

    Comment

    Working...
    X