General question about display

  • Thread starter Thread starter JR
  • Start date Start date
J

JR

Is there a way to customize Outlook quickly and easily (I don't want
have to do any Visual Basic programming, etc.) to display the current
date and time in the Inbox screen. I work in Outlook so much, that I'd
like to be able to quickly check what the current date and time are
when I'm in the normal Inbox view.

Any suggestions?

Jeff
 
Might seem silly, but to see the current date, look at the Received
date on the items in your Inbox. New items will have today's date.
for the current time, just don't let your taskbar auto-hide - if you
have the clock in the taskbar, you'll see it all the time.

A 3 line macro could make this happen via a button on the taskbar, but
you did preclude that...
sub ShowTime()
msgbox Now()
end sub

Tony
 
Back
Top