Which is the standard/better way to add strings together?
orVB Code:
MsgBox "DataSave.Param" + Format(n + 1) + "=s"Is there any difference between using '&' or '+'?VB Code:
MsgBox "DataSave.Param" & Format(n + 1) & "=s"
Is either considered bad practice?




Reply With Quote