Click to See Complete Forum and Search --> : HTML Using an ocx


chhean
December 17th, 1999, 05:20 AM
Hello,

I have a problem using an ocx within an HTML page.

Ex:
<html>
<body>
<BR>Text1<BR>
<OBJECT ID="Calendar" HEIGHT=400 WIDTH=400
CLASSID="CLSID:8E27C92B-1264-101C-8A2F-040224009C02"
</OBJECT>
<BR>Text2<BR>
</body>
</html>

Only Tex1 and the calendar are visible but not the Text2.
So what's wrong?

Thank you fore your help.

Lothar Haensler
December 17th, 1999, 06:09 AM
the closing ">" in your <OBJECT tag is missing!
<OBJECT...> <-- THAT ONE!!
</OBJECT>