Group:  Microsoft Outlook ยป microsoft.public.outlook.program_addins

Geek News

Threads Replies Last Post
45 Pages: <<  15  16  17  18  19  20  21  22  23  24  25  26  27  28  29  30  31  32  33  34  35  36  37  38  39  40  41  42  43  44  45  
Forward all e-mails from Outlook
Hi , Is it possible to Forward all e-mails from Outlook, and preserve original FROM, CC fields ? -- Thanks, Maxim ...
2 1/15/2006 10:43:18 PM
Appointment RTF format problems using Redemption
I am developing an addin for Outlook 2000 using vb6 and Redemption. The addin inserts code into the body of an appointment when a button is clicked. I have two problems, 1) when the RTF text is added to the body the format characters are no longer there, and 2) the added text does not show until I go thru the code a second time, this results in the previous text appearing and the current...
2 1/15/2006 10:41:53 PM
urgent help
Dear All, I am haveing Exchange Enviroment Here in My Network. All of my users i convert them from using mailbox to use Personal Folder, and all of the E-mails will be stored locally on the client PC as per our company Policy. Now, i want to understand the difrrent between using Personal Folder & Autoarchive. ? If i disable the AutoArchive, and depending on the PST, do you think ...
1 1/15/2006 12:11:02 PM
Restrict
I want to find all contacts that do not have an empty CompanyName it seems "[CompanyName] != ''"; does not work. Can I used != in an restrict? Thank you...
3 1/13/2006 8:14:26 PM
Got exception while QueryInteface
Hi all, I have just seen one abrupt behaviour of Outlook. I wrote one add-in in VC++. This add-in can work on multiple mail items at a time. Means user can select more than one mail and thorugh add-in command bar button it moves all mails to the specific folder. When I selecte around 200-400 mails in one go, at any point my queryinterface function from following code throws an exception. I...
8 1/13/2006 8:44:38 AM
Custom Task Item Notification
Hi, Using Outlook 2003 and Exchange 2003, I have created a database application that creates a custom task item for a user with custom fields to be filled in. Once the task is complete (and the data populated), I want the task item to be sent to a manager who will have to act on the data that the user filled in. Using script attached to the custom task form, I can check that the task ...
2 1/12/2006 2:58:09 PM
Redemption MAPITable
I am trying to use MAPITable to speed up retrieval. I am using C#, but it gives an exception: "IMAPITable::SetColumns() returned 0x80070057". What object in C# do I need to pass to table.Columns ? NameSpace ns = this.OutlookApp.GetNamespace("MAPI"); MAPIFolder folder = ns.GetDefaultFolder(OlDefaultFolders.olFolderContacts); Redemption.MAPITable table = new Redemption.MAPITableClass(); ta...
2 1/12/2006 4:09:04 AM
Saving Attachments
Hi, I have an addin written in C#. If the user wants, I try to save the attachments. This is the code I use: public void uploadattachements(Microsoft.Office.Interop.Outlook.Attachment pattach) { string temppath = Path.GetTempPath(); string saveto = temppath + pattach.FileName; pattach.SaveAsFile(saveto); ... } This does work 90% of the time. However, on occasion, ...
1 1/11/2006 7:27:29 PM
Operation failed in Bcc field
Hi everyone I've created an AddIn for Outlook2k3 using Vb6 My AddIn use the Application_ItemSend Event to add some address in the Bcc field. This task work fine however if Bcc is already populated with a distribution list, sometimes outllook show the messagebox "The operation failed". It seems outllook cannot resolve some of the contact in the DL, if i remove them from the list ...
3 1/11/2006 8:27:02 AM
Adding more email account to my outlook account.
I've just completed configuring my Outlook 2003 email account. During the process i failed to include another email address that I wanted Outlook to receive. does anyone know how I can go back and add this email address so that my emails will go into Outlook also? Thanks...
1 1/11/2006 4:05:03 AM
Outlook Rules Wizard
It seems the outlook rules wizard is not installed on a user's PC. When you click on the rules wizard this pops up " the command is not available. See the program documentation about how to use this extension" I can't find how to reinstall it. Does anyone know how this is reinstalled?...
1 1/10/2006 4:20:07 PM
Can and can't do
Hi everyone, I am trying to explore what an Outlook add-in can or cannot do. Here are some questions I have in mind: 1. I know it is not possible to add a new button on the Navigation Pane, but is there a way to somehow intercept its listener? (i.e. can I create a callback method that responds to the "Calendar" button on the Navigation Pane?) 2. This is related to the last question. Is ...
2 1/10/2006 3:12:30 PM
NewInspector Event and "No Such Interface Supported"
I have an addin in C# and I am using Interop.Outlook 9.0.0.0 I can use the this._outlookActiveExplorer).Activate += new ExplorerEvents_ActivateEventHandler(OutlookReferences_Activate); and it compiles fine, but when I start outlook 2000 or 2003 it says "No Such Interface Supported" I tried following the article:http://support.microsoft.com/?kbid=316653, but when I started outlook after l...
2 1/10/2006 3:22:38 AM
Can an OL folder's Home Page be a non-htm, editable document?
If I right-click on an OL folder and go to Properties/Home Page, can I somehow get a document (.doc, .txt, .wri, .rtf, whatever) to show up in that folder that I can then edit as a normal document? I know I can get an .htm page to appear in there, but I can't edit it. I pointed the browse function to a word .doc and got something with all the formatting characters showing up, but I cou...
2 1/9/2006 9:54:46 AM
Add-In in Outlook doesn't load any more
Hi, I am working on an add-in in .net 2005 for outlook and i have always to restart outlook to see how my add-in reacts. my problem is that first my add-in gets loaded by outlook successfully and that goes for 2 or 3 times so; but then outlook doesn't load my add-in any more!! I looked up in options in the tab advanced and my add-in isn't listed there; and i tried to add it to that li...
1 1/8/2006 4:49:33 PM
Outlook 2003: Add-In doesn't load any more
Hi, i programmed an Outlook-Addin in vb .net 2005 and have the problem that my addin isnt loaded any more. OL loaded my addin 2 or 3 times but then i dont see any messageboxes and so on ^^ I tried to register my dll with regsvr32.exe but then i get the message that "myaddin.dll was loaded, but the DllRegisterServer-Entry Point couldn't be found This file can't be registered." D'ya have...
1 1/8/2006 1:46:47 PM
best way to support outlook 2000, 2002, and 2003 and .NET
I have developed my add-in on Interop.Outlook 9.0.0, but I cannot attach the new_inspector event. It shows up and compiles fine in Visual studio, but gives me a an exception when trying to add the event to the inspectors. Any ideas? This brings up a nother point. What is the best way to support all three versions of Outlook using .NET? if I use the older interop.outlook will I be ok? T...
3 1/8/2006 9:55:07 AM
log4net
Does anyone use log4net in their Add-in application. I am interested in ohwo you configured it? Thanks...
3 1/7/2006 7:09:21 PM
Outlook items not discarding changes
In my add-in, I have WinForms that edit underlying Outlook items. In the new version of my add in, I update the underlying Outlook item in realtime to better reproduce what goes on in a normal Inspector so that other properties get updated and such. This has introduced a strange problem, however. If I close without saving, any changes I made to the Outlook item (such as a ContactItem's ...
2 1/6/2006 6:58:49 PM
Meeting Update Cancel
Outlook 2003 SP2, Exchange 2003 SP3 I have a problem when programmically deleting a meeting request and need to send out a meeting cancel. Mircosoft documentation indicates setting the MeetingStatus = olMeetingCancel and then a .Send After I do this I then deleted the meeting ..Delete an set appointment to nothing. The problem is the message sent shows up as an Update not a Cancel me...
1 1/6/2006 1:41:03 PM
How to determine original filename from an attached .msg-file?
Hi, I need to determine filenames from attachements in a new mail. I create a new mail (new mail inspector is opening) and attache several files from desktop via drag&drop. All files will be displayed in the new inspector with their original filenames as title. In this case I'm able to determine original filename from attachments properties (PR_ATTACH_FILENAME and/or PR_ATTACH_LON...
4 1/5/2006 3:52:36 PM
Word as e-mail editor
Hi, I've seen this issue discussed here often, but I still need some clarifiactions. I have created an Outlook AddIn ( C# ). It was created using Outlook 2000 Object Model, but currently I test it on Outlook 2003, and Word 2003. The problem I encounter: If the email editor is set as Word, the AddIn's main window seems to be hang - white and busy (sand clock) cursor ( When obsreved fr...
5 1/5/2006 3:06:31 PM
NewInspector Event not fired
Hi, I'm able to recorgnize 'NewInspector'-Event ever when I'm opening a new inspector from the Outlook-Application-GUI. When another tool initiate sending a new mail via simple-MAPI a new inspector will be opened in Outlook (set as default mail client) too. But in this case the 'NewIspector'-Event will not be fired and I'm not able to recognize (in my outlook com-addin) this action. ...
2 1/4/2006 3:27:26 PM
Outlook 2002 IPM.Microsoft.FolderDesign.NamedView
Dear all, I'm now working on an addin that needs to read the view settings of the Address Cards View , by using MAPI call to read the PR_VIEW_STATE of the IPM.Microsoft.FolderDesign.NamedView message of a folder. With the view settings, the addin draws various icons on the addresss cards which is similar to what plaxo is doing. A problem I hit before is that the change of view settin...
1 1/4/2006 9:59:12 AM
how to edit mail message
Hi, I need to edit the mail message. What i meant is, i have written a mail(which is HTML format). When i am sending ,my add-in has to make necessary changes in that mail. how can i do that in using COM Add-ins. How can i create new mail message programitcally. -- Regards, RamakoteswaraRao Koti Software Engineer, Nannacomputers Pvt Ltd ...
6 1/4/2006 5:59:35 AM
45 Pages: <<  15  16  17  18  19  20  21  22  23  24  25  26  27  28  29  30  31  32  33  34  35  36  37  38  39  40  41  42  43  44  45  

Home | Search | Terms | Imprint Contact
Newsgroups Reader - provided by WiredBox.Net