Outlook Form which will display the number of minutes until the next meeting

P

PurpleK

I'm looking for a customization to the Calendar form in Outlook which
will display the number of minutes until the next meeting and for all
the meetings that day. I know it probably seems silly but our sales
people would like to view their calendar for the day and see a counter
which would tell them how many minutes they have until their next
meeting and subsequent meetings for the day.

Thanks in advance for your time,

Tom
 
S

Sue Mosher [MVP-Outlook]

Customizing the form wouldn't necessarily affect the view, which sounds like
what you're really aiming for. I can't imagine a way to do this without
swamping your system. Think about it: For this to work, Outlook would have
to update the display every minute with the new value for the minutes.
 
P

PurpleK

Sue,

Thanks for the quick response. I see what you mean about the extra load
it would place on Outlook, but I don't expect them to be viewing the
Calendar form for extended periods of time. If you think it is more
than possible I would like to explore what it would take to make it
happen. If using your book would make a difference I would be more than
happy to started.

Thanks again,
Tom


*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
 
S

Sue Mosher [MVP-Outlook]

Now I'm confused. First you talked about a form. Then you implied that users
wanted to see this information in their Calendar folder view. Which is it?

Also note: The newsgroup interface you are using apparently does not quote
earlier messages in the thread, making your latest message so short on
detail that you risk not getting the answer you're looking for. Please take
the time to quote the original message.
 
P

PurpleK

Sue,

Ideally the users would like to see a counter in their appointment which
will tell them how many minutes they have until their next meeting. So
if the user was in Outlook and opened their Calendar and it displayed
all events for today's date it would also have a counter displaying how
many minutes until that appointment.

If this functionality is not feasible in the Calendar view would it be
feasible some other way?

I suggested buying everyone a watch that had sweeping hands but that did
not go over very well. ;-)

Thanks again for your time and assistance,
Tom



Now I'm confused. First you talked about a form. Then you >implied that users
wanted to see this information in their Calendar folder >view. Which is it?

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers



PurpleK said:
Sue,

Thanks for the quick response. I see what you mean about the extra load
it would place on Outlook, but I don't expect them to be viewing the
Calendar form for extended periods of time. If you think it is more
than possible I would like to explore what it would take to make it
happen. If using your book would make a difference I would be more than
happy to started.

Thanks again,
Tom



*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
 
S

Sue Mosher [MVP-Outlook]

It is not possible to show such information in a Day/Week/Month calendar
view without a background process running to update the Subject property
(which is what you see in the view) of every item, every minute. Not a good
idea.

In a table view, you could use a custom formula field using the DateDiff()
function:

DateDiff("n", Now, [Start])

But few people use a table view to look at their appointments.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top