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

    What is relation between <OBJECT> tag and ActiveX control?

    I don't know what is relation-ship between NAME and VALUE parameter of PARAM tag and ActiveX control. Value of NAME parameter is a property of ActiveX control? How recuperate the value of VALUE parameter in ActiveX control? If you know the sites with examples or if you can send me samples code, please … ([email protected]).

    Thanks.




  2. #2
    Guest

    Re: What is relation between <OBJECT> tag and ActiveX control?

    the name attribute of the param tag refers to the name of the property of your activex control, the value attribute to its value.
    i.e. if your AX control has a "height" property you set it like this
    &lt;param name="height" value="485"&gt;
    and so on


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