Skip to main content

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:

/// The main entry point for the application. /// [STAThread] static void Main() { if (MessageBox.Show ("Do you want to run registration free?", "DropKickDemo3", MessageBoxButtons.YesNo) == DialogResult.Yes) { QlikOcxFunctions.StartRegFreeOperation(); } Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); } } }

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
		{
			/// 

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!

Join the Analytics Modernization Program

Remove banner from view

Modernize without compromising your valuable QlikView apps with the Analytics Modernization Program. Click here for more information or reach out: ampquestions@qlik.com