LicenseKey property not available (General questions)

by JasonH @, (7280 days ago)

I installed with the license key but I have no LicenseKey property when I build the app.

Using C++:
IwodFtpDLXComPtr m_Ftp = NULL;
hr = m_Ftp.CreateInstance(CLSID_wodFtpDLXCom, NULL);
if (FAILED(hr))
throw CreateInstance failed ;
m_Ftp->LicenseKey = XXXXX ;

error C2039: 'LicenseKey' : is not a member of 'IwodFtpDLXCom'

It mentions it in the help file so what gives?

Thanks

locked

Re: LicenseKey property not available

by Jasmine, (7280 days ago) @ JasonH

Jason,

try to recreate wrapper that visual studio made. I refer to files created using #import directive.

Kreso

locked

Re: LicenseKey property not available

by JasonH @, (7280 days ago) @ Jasmine

Jason,

try to recreate wrapper that visual studio made. I refer to files created using #import directive.

Kreso

Doing a Clean and Rebuild worked. Thanks!

locked