I.m not sure I'm following your question.
When F9 is pressed, a new calculation is forced on the worksheet. The
vb command for that is Calculate. Excel normally is defaulted to auto-calculation and will re-calculate the sheet anytime changes are made to affected formulas. I believe it is a worksheet change event that triggers this.
Not sure what you mean by the clock of the PC since time is not really involved. If you have =Now() in a cell then the time will refresh to the current system time each time F9 is pressed.
Are you looking to execute an event based on time?
You can use:
Application.OnTime Now + TimeValue("00:00:15"), "my_Procedure"
or Application.OnTime TimeValue("17:00:00"), "my_Procedure"
Hope this helps...
DaveG