dll怎么调用其他程序传参数?
像点击"用迅雷下载"时,自动开启迅雷并新建下载任务,把地址传进去

解决方案 »

  1.   

    你说的我知道,它调用geturl.htm,里面调用ThunderAgent_002.dll        set ThunderAgent = CreateObject("ThunderAgent.Agent.1")
            call ThunderAgent.AddTask(Url, "", "", Info, Location)
            call ThunderAgent.CommitTasks2(1)
            set ThunderAgent = nothing
    可是不知道这个dll是怎么把迅雷启动的,并把参数传进去
      

  2.   

    把迅雷作为对象来调用,就像用set appxls=createobject("excel.application")创建一个excel对象一样。不过这个接口是怎么实现的我也想知道