vb中怎么可以把text1(0)里面的数字跟text1(1)...1
发布网友
发布时间:2024-02-28 14:24
我来回答
共4个回答
热心网友
时间:2024-06-10 21:56
版主的题目是两个文本框空间内容的交换,也就是两个String变量内容的交换。这要用到一个中间变量。
完整代码如下:
Private Sub Command1_Click()
Dim s As String
s = Text1(0).Text
Text1(0).Text = Text1(1).Text
Text1(1).Text = s
End Sub
热心网友
时间:2024-06-10 21:56
dim temp as string
temp=text1(0).text
text1(0).text=text1(1).text
text1(1).text=temp
热心网友
时间:2024-06-10 21:50
T = Text1(0): Text1(0) = Text1(1): Text1(1) = T
热心网友
时间:2024-06-10 21:58
dim temp as string
temp=text1(0)
text1(0).text=text1(1).texttext1(1).text=temp
'主要是需要一个temp来存数据。。没啥难