Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / General Excel Questions / August 2007

Tip: Looking for answers? Try searching our database.

Pop up timer for excel

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
jlclyde - 31 Aug 2007 20:13 GMT
Is there a Pop up clock like the Pop up calendar for Excel?  It would
be best if it had date and time on one.

Thanks,
Jay
FSt1 - 31 Aug 2007 22:08 GMT
hi,
xl has bo built in function for this and I am sure if you search the net
enought you might find one. but you can make one yourself.  oooo
Create a user form with a single text box.
in a standard module put this code.....
Private Sub showclock()
Load UserForm1
UserForm1.Show 0
Call Clock
End Sub
Private Sub Clock()
UserForm1.tb1.Value = Format(Now, "hh:mm:ss AM/PM")
Application.OnTime Now + TimeSerial(0, 0, 1), "clock"
End Sub

Attach the Private Sub showclock to a custom icon. done.

I got this code from this web site.....
http://www.mvps.org/dmcritchie/excel/datetime.htm
except their code puts the timer in a cell so i made a popup out of it.
Check this site out if yo want to know a thing or two about time and dates
in excel.

regards
FSt1

> Is there a Pop up clock like the Pop up calendar for Excel?  It would
> be best if it had date and time on one.
>
> Thanks,
> Jay
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.