to reset make the label (or whatever you are using to display the timer count) = 0.
for the menu enter the menu editor and make a menu. (uncheck "Visible" if you want a popup menu)

Here is sample code to display the menu (if its a popup menu)

VB Code:
  1. Private Sub Label1_mousedown()
  2. If button = vbRightButton Then
  3. PopupMenu MENU NAME, vbPopupMenuRightButton
  4. End If
  5. End Sub

Hope this helped...

-Sir Loin