怎么单击命令按钮后将标签结果显示在文本框里

2025-03-13 11:59:48
推荐回答(2个)
回答1:

很好,不难吧 Private Sub Command1_Click() label1.caption=text1.text Command1.caption=text1.text End Sub

回答2:

不难吧

Private Sub Command1_Click() 
label1.caption=text1.text 
Command1.caption=text1.text 
End Sub