樓主你學過VB沒,
private sub text1_chang()
if len(text1.text)>=1 then
text2.visible=false
label1.caption=text1.text
else
text2.visible=true
label1.caption=text1.text
endif
end sub
引二樓的
Private Sub Command1_Click()
If Text1.Text = "计算机等级考试" Then
Text1.Visible = False
Label1.Caption = "计算机等级考试"
End If
End Sub