|
Outlook 2003 - Out of Office Assistant
I have just installed Outlook 2003 (with all the updates, incl SP3) and I
can't find the out of office assistant in the toold menu. I have checked that
the add-in is there for it and it is. (Exchange Extensions property page)
I have checked overything I can figure to get it to work. Do I need Exchange
in order for this to work? I heard this somewhere on the net.
Thank You...
|
2 |
20.02.2006 18:25:43 |
|
How to Copy a Custom Action
Hi all,
We have a custom action on one of the workstations here that runs Outlook
2000 that saves an attachment from an incoming email to a local folder in the
c drive. Was wondering how I could copy this action to another workstation.
Basically, there's a rule on the Rules Wizard that performs the custom
action.
Any ideas?
Thanks!
-Bowen...
|
1 |
20.02.2006 05:10:31 |
|
Shared Office Add-in
First I appologise if this is not the correct newsgroup for this post. I
would be happy to post it elsewhere if someone would like to point me to the
write one.
I have written a managed COM addin for Microsoft Outlook written in C#. My
problem is I believe an installation one. Even though the project created
by Visual Studio creates an installation program it often fails to work or
...
|
2 |
19.02.2006 05:06:12 |
|
Right Click on Inspector Window header
Is it possible to add to the context menu in an inspector as well.
For Example if you bring up a mailitem and right click over an email in
the header, it will bring up a context menu asking if you want to add to
contacts among other options? Is this available to add to?
Or is this the smart tag stuff?...
|
2 |
17.02.2006 23:09:49 |
|
Inspector Wrapper utlook 2000
I read http://www.pcreview.co.uk/forums/thread-1856258.php and explored
ItemsCB, but I am using an OOM that has the Activate() method but there
is no Activate event also there is no Close event on a MailItem.
I am having the normal problem where my toolbar does not show up on the
inspector.
Can someone help me?
Thanks...
|
6 |
17.02.2006 22:12:40 |
|
getting E_NOINTERFACE trying to create outlook.application in vc++ (2005) on xp
Hello:
I'm getting E_NOINTERFACE when I try to create an outlook.application
object in vc++ (2005) on xp running outlook 2003.
HRESULT hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
CLSID clsidOutlook;
CLSIDFromProgID(L"Outlook.Application", &clsidOutlook);
CComPtr<IDispatch> OutlookPtr;
hr = CoCreateInstance(clsidOutlook, NULL, CLSCTX_LOCAL_SERVER,
IID_IDispat...
|
3 |
17.02.2006 17:18:55 |
|
How to get attachment if image is pasted in body itself.
Hi,
I have one outlook add-in which reads the attachments of the mail and
save those on system.
I observed that, if we send mail in which image is pasted in body
itself then outlook object model api can not get any attachment.
We can see the image in body and we can also save that image but we can
not get attachment programatically.
Can anyone please help me on this?
Thanks and regar...
|
4 |
17.02.2006 17:17:48 |
|
lose onupdate event
I am trying to modify the contextmenu in outlook, and it works fine, but
then I lose the context menu, it seems to happen b/c the onupdate event
for the explorer does not get fired anymore only if I do some action
outside of the explorer. So I decided to readd the onupdate event
anytime I do some action, but this causes a problem if I want to fire a
click event for one of the buttons b/c...
|
1 |
16.02.2006 17:21:17 |
|
Outlook.Application handles Quit
Hi there,
I got this code below from my COM add-in which handles the Quit on my
outlook Application but it never get fired why is this? and how can i
fix this?
Thankls
Donald
Public WithEvents _Application As Outlook.Application
Private Sub app_quit() Handles _Application.Quit
MsgBox(_Application.Inspectors.Count)
MsgBox(_Application.Explorers.Count)
End Sub
...
|
4 |
16.02.2006 14:45:54 |
|
Read / Unread change
Hi,
I need a notification when a message changes its 'Read' status of a specific
folder and any of its subfolders recursive.
I saw the Outlook.Folders.FolderChange and Outlook.Items.ItemChange but I
need a recursive notification.
Can anybody help me?
Thanks,
(- July -)
...
|
2 |
16.02.2006 14:40:57 |
|
Options Pages with VS2005
FYI - Anyone using Visual Studio 2005 with ATL will find that the
WM_INITDIALOG message WILL NOT be sent when trying to initialize an Outlook
options page. To work around this issue you will need to handle a different
dialog message like WM_SIZE which you will have to include a flag since it is
called twice at initialization (credit goes to S3ven).
Hopefully this saves others debugging time...
|
2 |
16.02.2006 03:28:55 |
|
outbak.dll problem
I just installed sbs and outlook 2003 was installed on all clients
computers. All, but one are ok. The one keeps getting an errror that the
add-in outbak.dll is not valid. I looked into the add-in tab and there is
nothing loaded. I tried to just look for the dll and delete it. That didnt
work either. Any suggestions?
Thank you Corky
...
|
2 |
16.02.2006 01:56:53 |
|
Uninstall Outlook add-in
I installed Outlook add-in:Calendar Views and now want to unistall it. After
removing the program through Control Panel, it is still installed in Outlook.
How do I remove it?
--
KPowell...
|
2 |
15.02.2006 21:55:08 |
|
load CommandBarPopup
Hello I am a adding a CommandBarPopup to the ContextMenu in Outlook and
when the user clicks this the expansion I would like to go to a db and
pull some values; however I do not want to load those values from the db
when the context menu it built otherwise it may slow down the displaying
of the context menu, but CommandBarPopup does not have an OnClick event,
any ideas?
Thanks...
|
1 |
15.02.2006 18:13:48 |
|
Enebling of the buttons
Hello, everyone!!!
I have a problem:
I have my C++ Addin for outlook. I have such a code
..............
Office::CommandBarControlsPtr pControls;
pMailCommandBar_->get_Controls(&pControls);
Office::CommandBarControlPtr pControl;
pControls->get_Item(CComVariant(2), &pControl);
pControl->put_Enabled((vVisible ? VARIANT_TRUE : VARIANT_FALSE));
......................
this code...
|
1 |
15.02.2006 16:28:02 |
|
Background Color for Outlook Property Page
Recently I was trying to get this working. I solved it. Here it is:
I used a great sample from here:
http://thecodeproject.com/wtl/ThemedDialog.asp#xx1149261xx
////////////////////////////////////////////////////////////////////////////
// Copyright : Amit Dey 2002
//
// Email :amitdey@joymail.com
//
// This code may be used in compiled form in any way you desire. This
// file may...
|
3 |
15.02.2006 07:38:41 |
|
dialing from email
Hello -
I've got the TAPI driver working just fine in Outlook - I can dial from a
contact without any issues at all.
However, when I get an email from a contact and right click on the contact's
name there is an option to dial directly from that menu. However, when I
select the number to dial nothing happens. Am I missing something here? Any
ideas as to why the number doesn't get ...
|
1 |
14.02.2006 20:29:30 |
|
outlook doesn't closed well
Hi people,
I have a COM Add-in for Outlook 2003, and the problem is when I close the
outlook, the process outlook.exe in the task manager don't disapear, then if
I try to open the outlook again it fails.
Anybody can give an idea for this
Tanks in advance,
Jaume F.
...
|
8 |
14.02.2006 20:06:53 |
|
Detect read messages count changed
Is there a way to detect when a message has been read from a folder.
I try this
Dim ol As Outlook.Application
Dim ns As Outlook.NameSpace
Dim WithEvents folders As Outlook.folders
Private Sub Command1_Click()
Set ol = New Outlook.Application
Set ns = ol.GetNamespace("MAPI")
Set folders = ns.GetDefaultFolder(olFolderInbox).folders
End Sub
Private Sub folders_FolderCh...
|
1 |
14.02.2006 16:06:48 |
|
Tasks plug-in with more options?
Using O2k3... (Posted to outlook.general also)
I've looked around a bit, and was wondering if there was any way to tweak
the prioritization setting to allow for more variability than just Low,
Normal, and High? I have a few users that would love to be able to set
priority levels of their own (a,b,c,d) and intermediate importance levels
(1,2,3,4), or something like that. Existing app ...
|
2 |
14.02.2006 06:11:58 |
|
Outlook Synchronization Question
If anyone could answer this I would greatly appreciate it.
I am wondering if you could please answer or point me towards the
answer for a synchronization question I have.
I am using Outlook 2003 connected to an Exchange Server via RPC over
HTTPS.
The only Synchronization Group I have setup is the default "All
Accounts". "All Accounts" is set up using the default values that
outlook p...
|
4 |
13.02.2006 21:46:09 |
|
Outlook Application variable problem
Hi,
I am facing a typical problem,in storing the application value. Here
what i have done. I am using VC++ 6.0
I have created ComAddin ,in that i have created CommandButton on
Inspector window. And in the Button event(click event) i am used to display
a dialog box.
Let us take ComAddin - class :CAddin
Interface :I...
|
1 |
12.02.2006 14:25:17 |
|
Outlook Connector for Domino - Uses all VM
I recently upgraded to Lotus Notes 6.5.4, and since then have found that,
with olconn2.exe installed, that Outlook strts, but them quickly consumes all
VM available, eventually maxing out (on my machine) at 1.3GB. Killing the
outlook.exe process returns the VM usage to normal.
I am running
Win XP SP2
Lotus Notes 6.5.4
Outlook 2003
I have tried uninstalling outlook,lotus notes, etc ...
|
1 |
12.02.2006 07:27:03 |
|
"WMS ST Notif Window" while shutdown of Outlook.
Hi all,
I am facing one problem regarding the clean shut down of Outlook.
If anyone tries to logoff from the sytem keeping Outlook open it will
give error that
outlook fails to shutdown due to a "WMS ST Notif Window" process
failing to stop .
Can you please provide some clue on this?
Thanks and Regards
Vinayakc
...
|
2 |
10.02.2006 11:19:28 |
|
Accessing attachments in Outlook using MAPI
How can I access attachments using MAPI?
Somewhere on internet i found PR_ATTACH_DATA_BIN property, but this
doesn't seem to work: MAPI_W_ERRORS_RETURNED is returned.
Thx for any help...
...
|
2 |
09.02.2006 20:09:42 |