我不知道大家用的是什么方法 ,我用 visible = false

解决方案 »

  1.   

    那你不如把TextBox设置一下,把它当Label用,还能输入!
      

  2.   

    visible = false这样是行,关键是怎样将它与label控件连接起来,当鼠标放在上面再将其显示出来?
      

  3.   

    怎样将TextBox设置后,能当label用啊?
      

  4.   

    应该不难吧!
    sub label1_mouseon()handles label1.mouseon''''可能不是这么写的,你用智能感知试试.
         textbox1.visible=true
    end sub
    sub label1_leave()handles label1.leave
         textbox1.visible=false
    end sub
    思路应该是怎样.
      

  5.   

    <script>
    function moveout()
    {
        txt.style.display="inline";
    } function movein()
    {
        txt.style.display="none";
              }
    </script>
    <INPUT id="txt" type="text">——————————————————————————Private Sub Page_Load() 
           Label1.Attributes.Add("onmouseover", "movein()")
           Label1.Attributes.Add("onmouseout", "moveout()")
    End Sub
      

  6.   

    楼上的方法可以,用处理onmouseout和onmouseover事件来实现,当然你要把那两个控件的位置放 到一起。