To update on new Automation Techniques using Excel,Ms Access, SQL Server, Power BI and ASP.Net
Monday, April 23, 2012
Timer in Excel using VBA
Public Sub TestTimer()
MsgBox "The timer will switch off in 10 seconds!"
MsgBox ("Currenttime: " & Now)
alertTime = Now + TimeValue("00:00:10")
Application.OnTime alertTime, "TestTimer"
myMacro
End Sub
No comments:
Post a Comment