How can I import an OCX to html file.
it is for my own ocx for my own use.
Thanx
Printable View
How can I import an OCX to html file.
it is for my own ocx for my own use.
Thanx
You want to use an ocx you wrote in an HTML file, like for a web or intranet page?
I want to use it for intranet.
Hang on a while, I'll check it out for using an OCX in an html file...
First you need to know the CLSID of the OCX. This can be found in the registry.
Next, take your HTML and paste this:
<object id="control" classid="clsid:C932BA85-4374-101B-A56C-00AA003668DC" width="100"
height="50">
[activex control here (masked edit box)]</object>
the CLSID in this code is for the masked edit box (on my machine) just replace it with the CLSID of the OCX you want to insert and poof! it works.