LapidusCreatorium Posted June 27, 2008 Posted June 27, 2008 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.
LapidusCreatorium Posted June 27, 2008 Author Posted June 27, 2008 It seems that in VB I get "Object Required: Response" Something missing here.
LapidusCreatorium Posted June 27, 2008 Author Posted June 27, 2008 Seems that you need WM Rights Manager SDK.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now