当单击第一个命令按钮时,文本框消失;单击第二个命令按钮时,文本框重新出现,并在文本框中显示“VB程序

如题所述

第1个回答  2008-10-29
private sub command1_click()
text1.Visible=false
end sub

private sub command2_click()
text1.Visible=true
text1.text = "VB程序"
end sub本回答被提问者采纳