I have an application that pulls data from a QlikView application to be used elsewhere, hence I have no need to ever show the QlikView application. But I cannnot figure out a way for my application (Windows App in .Net) to hide the QlikView window.
Dim App As New QlikView.Application 'This displays the application. I don't want that to happen.
Dim Qvw as QlikView.Document = App.OpenDoc("myapp.qvw") 'This displays the application. I want this even less.
Everything I then do in code is mirrored and displayed in the document (selections, sheet creations, chart ceations, etc.) and I do not want any user messing around with the document, or even QlikView for that matter.
How can I make this happen in the background?