alexaronson
Active Member
- Joined
- Sep 30, 2005
- Messages
- 314
Hello,
I want to make a message box that says the following:
"The system took 25 seconds to process."
Where the 25 is a variable.
I have the following code already.
Sub Time()
Dim t as Double, x
t = Timer
For x = 1 to 10
Blah Blah Blah
next x
MsgBox Timer - t
End Sub
As the code stands, I only get the 25 in the message box. How can I add the text?
Thanks,
I want to make a message box that says the following:
"The system took 25 seconds to process."
Where the 25 is a variable.
I have the following code already.
Sub Time()
Dim t as Double, x
t = Timer
For x = 1 to 10
Blah Blah Blah
next x
MsgBox Timer - t
End Sub
As the code stands, I only get the 25 in the message box. How can I add the text?
Thanks,