Outlook script macro issue
Tue, 11 Nov 2008 07:40:01 -0800
Hi,
I've created a script for use with a rule in Rules Wizard and have put it
into a module in my VbaProject.OTM. The first times that the rule runs it
works fine. However, after some time it stops working without giving any warn
or error. It seems like if it doesn't execute.
The only way I have found to ...
|
Summarizing personal folders
Tue, 11 Nov 2008 07:37:12 -0800
Hi,
How could I easily scan my personal folder and generate a list (table of
contents) of the mails found in there. i would prefer the following
information:
date of mail
from whom did the mail originate
Subject of the mail
Is there an attachment (yes or no)
The output list can be in .txt or .csv fo ...
|
CSS formatting of emails
Tue, 11 Nov 2008 06:58:16 -0800
I know this is not VBA, but I couldn't see any better groups to post this
question to!
I am trying to create a html template for our emails, I've tried using
tables and when someone replies, all the table borders suddenly appear, and
if I just use CSS then Outlook seems to throw away all my div deffinitions ...
|
How to get the sent mail time stamp using VBA Macros or by rule
Tue, 11 Nov 2008 00:50:08 -0800
Hi,
Need to find the outlook sent mail time stamp, along with date.
i need this for thousand of mails sending perday --want this for, number of
mails that have been sent with a particular subject along with sent time
stamp as a report ...
|
resending an email
Sun, 9 Nov 2008 14:31:00 -0600
Hi, pardon the simplicity of the question, but I'm a newbie at Outlook VBA
I have written code that automatically forwards email that hits my
Exchange/Outlook account and forwards it to a POP3 account of mine. It works
great, except when you forward an email my default signature gets attached
to the message ...
|
Outlook CBA changing Fonts
Sat, 8 Nov 2008 06:23:03 -0800
Hi all,
I have an extremely simple macro as follows:
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
If Item.Class > olMail Then Exit Sub
Item.Body = Replace(Item.Body, "My N ame" & vbCrLf, "My Name, CISA" & vbCrLf)
End Sub
However: when it executes it changes the MESSAGE PARAGR ...
|
Clean up File Link
Fri, 7 Nov 2008 12:14:32 -0800 (PST)
Worked perferctly, BUT... It's ugly in the email, how do I clean it
up like an href type of link so that I can say maybe
click this "link" to access the file. and the "link" have the file:///
reference hidden in it?
Thanks....
Sub SendMessage()
Dim objOutlook As Outlook.Application
...
|
|
|
Sorting Inbox
Fri, 7 Nov 2008 07:50:56 -0500
Hi,
I'm trying to time the sorting of the inbox on various fields like this:
Set colItems = objFolderInbox.Items
MyStartTime = Now
colItems.Sort "From"
TimeToSortInbox = DateDiff("s",MystartTime,Now)
Unfortunately this is not an accurate reflection of sorting through the GUI.
Is it possible to actual ...
|
OL2007 - determine if shared calendar folder has been cached
Thu, 6 Nov 2008 23:35:00 -0800
It's my understanding that you can cache/synchronize shared calendars in
Outlook 2007 although there can be technical and performance issues depending
on which version of Exchange 2003/2007 you are connected to (see more info
below).
Can anyone advise (using Redemption, the registry of OOM) how one determin ...
|
Display "Last Update on ..." message on Calendar in public folder
Thu, 6 Nov 2008 10:47:01 -0800
I periodically update a public folder calendar using VBA in an Access db. I
want to display a message on the calendar that will say when this update was
done. I want to change the content of the message with VBA each time the
update runs. I want the message to be prominent, obvious. Where is a good
place to ...
|