求编写VB程序!!!在窗体上建立三个文本框,名称分别为text1 text2 text3 的visible 属性设为false

2024-11-25 21:15:30
推荐回答(1个)
回答1:

Private Sub Form_Click()
Dim a As String
a = text1.Text
text1.Text = text2.Text
text2.Text = a
End Sub