CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    May 1999
    Posts
    10

    HTML Using an ocx

    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.



  2. #2
    Join Date
    May 1999
    Posts
    3,332

    Re: HTML Using an ocx

    the closing ">" in your <OBJECT tag is missing!
    <OBJECT...> <-- THAT ONE!!
    </OBJECT>


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured