Jump to content

VB Response Objects


Recommended Posts

I am not very familiar with Autoit and I need to convert a VB script.

Here is the VB:

CODE

Response.Buffer = True

Response.Expires = 0

Set ResponseObj = Server.CreateObject("WMRMobjs.WMRMResponse")

LicenseResponse = "xxx"

Response.Write LicenseResponse

How that translates in Autoit? Is this correct?

$ResponseObj = ObjCreate("WMRMobjs.WMRMResponse")

$LicenseResponse = "xxx"

$ResponseObj.Write($LicenseResponse)

I always get: Variable must be of type "Object".:

Thanks.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...