我试图在VB6来连接。 操作员+ =不支持,我要像做下面的代码。 我想更多的字符串添加到一个文本框的程序工作下来这段代码。 谁能指教一下改+ =什么? 我知道和可以添加一个字符串到另一个时使用,但我在这里工作的例子,似乎并不合适。
谢谢。
If (strHomeNo <> "") Then
txtPhoneNums = "Home: " + strHomeNo
End If
If (strMobileNo <> "") Then
txtPhoneNums += "Mobile: " + strMobileNo
End If
If (strWorkNo <> "") Then
txtPhoneNums += "Work: " + strWorkNo
End If
If (txtPhoneNums <> "") Then
txtPhoneNums.ForeColor = vbBlack
txtPhoneNums.FontBold = False
End If
Else
txtPhoneNums.Text = "NO CONTACT DETAILS"
txtPhoneNums.ForeColor = vbRed
txtPhoneNums.FontBold = True