I just need to know how to have plain text and a variable in a messagebox.
For example:
I can do this: MsgBox(variable)
MsgBox(variable)
And I can do this: <
Why not use:
Dim msg as String = String.Format("Variable = {0}", variable)
More info on String.Format