Register DsoFramer programatically

  • Thread starter Thread starter Hori
  • Start date Start date
H

Hori

Hi,

I am using DsoFramer in my .NET1.1 C# Application for
Office-Integration. Before using it, I have to call

regsvr32 dsoframer.ocx

For the installation of many clients, this is not very pracitable. Has
anybody an idea how to do this programatically in C#?


Thanks,
Hori
 
Hi, Hori

I see tree ways for this:
1. Write msi installer which will register your ocx.
2. You can programmatically call regsvr32 with dsoframer.ocx parameter.
3. You can call DllRegisterServer function directly from ocx.
 
Alexander said:
Hi, Hori

I see tree ways for this:
1. Write msi installer which will register your ocx.
2. You can programmatically call regsvr32 with dsoframer.ocx parameter.
3. You can call DllRegisterServer function directly from ocx.

Thanks. DllRegisterServer worked.
 
Back
Top