我正在尝试在 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