LicenseKey property not available - WeOnlyDo Discussion board

LicenseKey property not available (General questions)

by JasonH, Friday, May 27, 2005, 16:39 (7119 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

Re: LicenseKey property not available

by wodSupport, Friday, May 27, 2005, 16:40 (7119 days ago) @ JasonH

Jason,

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

Kreso

Re: LicenseKey property not available

by JasonH, Friday, May 27, 2005, 16:46 (7119 days ago) @ wodSupport

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!