Announcement

Collapse
No announcement yet.

CM11 Activex in ASP webpage

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

    CM11 Activex in ASP webpage

    Hi,
    Has anybody got the CM11 ActiveX control working using ASP webpages?
    If so, please provide a codesnippet. I get the errormessage
    Microsoft VBScript runtime (0x800A01B6)
    Object doesn't support this property or method

    Whenever I do CreateObject( "cm11a.controlcm)

    Thnx
    Joop

    #2
    this one works with ASP (or VBS...)

    set x10 = CreateObject("cm11a.controlcm")
    x10.comport = 1
    err = x10.Init
    err = x10.Init
    If err <> 0 Then MsgBox "Error initializing CM11A", vbCritical + vbOKOnly

    err = x10.execwait ("A", "2", 3)
    If err <> 0 Then MsgBox "Error executing order on CM11A", vbCritical + vbOKOnly



    but only if i had second .init function....

    Comment

    Working...
    X