VB中点击按钮后将文本框一内容显示在文本框二中

2025-03-04 03:29:17
推荐回答(2个)
回答1:

Private Sub Command1_Click()
Text2 = Text2 & Text1

End Sub

第二个问题
在form 属性里将 BorderStyle 设置为 1
在将 MinButton 设置 为 True

回答2:

Private Sub Command1_Click()

Text2 = Text2 & Text1

End Sub

& 字符串连接符