Hi,
I'm trying opening a QVW file from .NET (C#).
I started a new console application an just wrote this two line :
QlikOCXLib.QlikOCX o = new QlikOCXLib.QlikOCX();
QlikView.Doc doc = o.ActiveDocument.GetApplication().OpenDocEx(documentPath, 0);
string script = doc.GetProperties().Script;
I'm getting an exception on the second code line. The exception detail is "Exception from HRESULT: 0x8000FFFF (E_UNEXPECTED)".
Nothing else.
Can you may help me to understand I can solve this issue ?
How is the best way to access a Qvw from a .NET application to retrieve some information (like the script for example) ?
Thanks a lot.