如何根据给定的坐标在网页中插入Atl Activex控件?如何使控件透明?
(控件上显示图片,同时能看到控件后的网页内容)如何能移动网页中的控件?盼各位牛人不吝指教!!!分不够可开贴再加。

解决方案 »

  1.   

    ding 
    来者看看这个,有分相送
    http://community.csdn.net/Expert/topic/3654/3654639.xml?temp=.581341
    http://community.csdn.net/Expert/topic/3654/3654639.xml?temp=.581341
      

  2.   

    1.http://search.csdn.net/Expert/topic/1444/1444434.xml?temp=.373028
    http://www.vchelp.net/cndevforum/subject_view.asp?subject_id=4446&forum_id=27
    2.在控件的WM_SIZE中修改控件的Extend
      

  3.   

    to kaste(ks):
    能给个代码么?谢谢!!!
      

  4.   

    <script>
    var vObject=document.createElement("object");
    vObject.classid="";
    DivID.appendChild(vObject);
    </script>
    <div id="DivID"></div>
      

  5.   

    如果移动控件可以
    vObject.style.position="absolute";
    vObject.style.width=0;
    vObject.style.height=0;
      

  6.   

    多谢 gjd111686(数字金刚) 兄,有点思路了。