Registration free deployment of the QlikView OCX component
Registration free deployment of the QlikView OCX is accomplished by the host program calling the DLL entry point StartRegFreeOperation. Calling this entry point will allow the OCX to work with no additional registration. In C# it looks like this:
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Runtime.InteropServices;
public class QlikOcxFunctions
{
[DllImport("QlikOcx.ocx", EntryPoint =
"StartRegFreeOperation")]
public static extern void StartRegFreeOperation();
}
namespace DropKickDemo3
{
static class Program
{
///