How to get text and a variable in a messagebox
问题 I just need to know how to have plain text and a variable in a messagebox. For example: I can do this: MsgBox(variable) And I can do this: MsgBox("Variable = ") But I can't do this: MsgBox("Variable = " + variable) 回答1: As has been suggested, using the string.format method is nice and simple and very readable. In vb.net the " + " is used for addition and the " & " is used for string concatenation. In your example: MsgBox("Variable = " + variable) becomes: MsgBox("Variable = " & variable) I