Rules don't seem to work automatically - I must manually run them

J

John R. Hamilton

I had the same problem. I do believe it is a Microsoft "BUG". Sometimes my
rules work and sometimes they don't. Often, I had to run manually. All in
all, the rules I set worked just fine when run manually. Even after
performing all the tips and tricks from MVP Outlook professionals, I still
had the same problem !!!! Here is my solution that WORKED for me as my rules
NOW run automatically with my VBA scripts.

a) Click Tools, Macro, Visual Basic Editor.
b) In the project explorer to the left, expand Microsoft Office Outlook
Objects
c) Double Click "ThisOutlookSession"
d) Copy and past the following code

Private Sub Application_Startup()
MsgBox "Welcome, " & Application.GetNamespace("MAPI").CurrentUser
Application.ActiveExplorer.WindowState = olMaximized
End Sub

e) Save the Visual Basic Program.
f) Close.
g) Done.

I know this doesn't make sense, but I think that the VBA macro library is
NOT loading properly at the start of Microsoft Outlook. I think the startup
event forces the loading of the VBA scripts properly. I don't think it
matters what code you place just as long as it is something to properly start
the VBA macros.

Anyway, again, I know that the above doesn't make any sense but it WORKED
for me. All the other LOGICAL solutions by the MVP professionals and other
users simply just did not work, which those other solutions should have
worked. Therefore, this leads me to believe that there is a BUG is the
Outlook product.

Again, it worked for me and I am NOW happy and I have stopped wasting hours
looking for a solution.

If this SOLUTION worked for you, please let me know. If this solution works
for you, please make a post so that Microsoft will know where to look for
this goofy bug in the Outlook product.

I hope this works for you as I spent over 200 hours trying to fix this same
problem.

John R. Hamilton
 
J

John R. Hamilton

I had the same problem. I do believe it is a Microsoft "BUG". Sometimes my
rules work and sometimes they don't. Often, I had to run manually. All in
all, the rules I set worked just fine when run manually. Even after
performing all the tips and tricks from MVP Outlook professionals, I still
had the same problem !!!! Here is my solution that WORKED for me as my rules
NOW run automatically with my VBA scripts.

a) Click Tools, Macro, Visual Basic Editor.
b) In the project explorer to the left, expand Microsoft Office Outlook
Objects
c) Double Click "ThisOutlookSession"
d) Copy and past the following code

Private Sub Application_Startup()
MsgBox "Welcome, " & Application.GetNamespace("MAPI").CurrentUser
Application.ActiveExplorer.WindowState = olMaximized
End Sub

e) Save the Visual Basic Program.
f) Close.
g) Done.

I know this doesn't make sense, but I think that the VBA macro library is
NOT loading properly at the start of Microsoft Outlook. I think the startup
event forces the loading of the VBA scripts properly. I don't think it
matters what code you place just as long as it is something to properly start
the VBA macros.

Anyway, again, I know that the above doesn't make any sense but it WORKED
for me. All the other LOGICAL solutions by the MVP professionals and other
users simply just did not work, which those other solutions should have
worked. Therefore, this leads me to believe that there is a BUG is the
Outlook product.

Again, it worked for me and I am NOW happy and I have stopped wasting hours
looking for a solution.

If this SOLUTION worked for you, please let me know. If this solution works
for you, please make a post so that Microsoft will know where to look for
this goofy bug in the Outlook product.

I hope this works for you as I spent over 200 hours trying to fix this same
problem.

John R. Hamilton
 
N

NetMaster

sI have the same problem. It is just a Outlook 2007 issue for me. MS has
many problem with Office 2007. I doubt it will be fixed. I went back to
Office 2003 and problem solved.
 
D

Doug Buchanan

I began having this same problem about a week ago. My rules (1 rule) worked
automatically... now I have to run it manually. I've tried adjusting the
settings... but nothing works. It's a simple rule "move incoming messages
with "[SPAM]" to Junk Mail folder." I also recently installed SP2... I
wonder if that has something to do with it?
 

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