I'm trying to get multiple lines in the same message box in VB script, I can get it to work in 2 different message boxes for now but would like it in a single box, my code is as below
MsgBox "E-mails successfully sent :" & Counter, vbInformation
MsgBox "Time taken: " & DateDiff("s", strtime, stptime), vbInformation
I would also like to add a string "Secs"
The output that I'm trying to get is as follows
Emails successfully sent : 4
Time taken : 4 Secs
Please help
MsgBox "E-mails successfully sent :" & Counter, vbInformation
MsgBox "Time taken: " & DateDiff("s", strtime, stptime), vbInformation
I would also like to add a string "Secs"
The output that I'm trying to get is as follows
Emails successfully sent : 4
Time taken : 4 Secs
Please help