Search the web
Sign In
New User? Sign Up
outlook-dev · Outlook Development
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 24596 - 24625 of 28048   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
24596
When I try and create a new Contact screen in OL 2003 I get the following error message: The form required to view this message can not be displayed. Contact...
Ed Carden
wecarden
Offline Send Email
Nov 2, 2004
5:47 pm
24597
Outlook 2003 sometimes has what's known as a "forms cache" problem. Clearing the cache usually fixes it. Choose Tools | Options | Other | Advanced Options |...
Sue Mosher
mosher_sue
Offline Send Email
Nov 2, 2004
6:14 pm
24598
Anyone seeing this problem? __________________________ Hi All, I've been encountering an issue with some of my custom forms that were published with OL2000....
Scott Perley-TM
outlookdev
Offline Send Email
Nov 2, 2004
6:18 pm
24599
Does anyone know or have an example of a Outlook plug-in written in Visual C++. I don't mind VC ^ or .NET, but I don't want to be dependent on the .NET...
alexander_iv@...
alexander_iv
Offline Send Email
Nov 3, 2004
9:08 pm
24600
Try http://www.bpsmicro.com/Files/MsgDump2000.htm . Raw C++ (no ATL or .NET). There's also http://www.bpsmicro.com/Files/Vernoter.htm, which is an example...
bpsmicro.com
bpsmicro
Offline Send Email
Nov 3, 2004
9:19 pm
24601
Two very good tutorials : http://www.codeproject.com/com/outlookaddin.asp and http://www.codeproject.com/atl/outlook2k3addin.asp...
graunibar
Offline Send Email
Nov 4, 2004
7:51 am
24602
Hi I am write a Message Store Provider. Inside the provider I can see the folder and the messages inside a folder, but when I try to open a message, I receive...
armins01
Offline Send Email
Nov 4, 2004
10:15 am
24603
Hello! I have to develop a plugin for a knowledgemanagement tool which allows using data stored on an exchange server inside this knowledgemanagement tool. ...
rolandleisch
Offline Send Email
Nov 4, 2004
1:28 pm
24604
Outlook never uses PR_BODY, only PR_RTF_COMPRESSSED, even if all you have is a plain text. ... From: armins01 [mailto:armin.schlueter@...] Sent:...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Nov 4, 2004
3:28 pm
24605
Check into CDO libraries, there are a number of utilities and resources out there. Outlook Web Access is designed using CDO libraries to access the Exchange...
Eric Woodford
ericwoodford
Offline Send Email
Nov 4, 2004
8:04 pm
24606
I am currently saving my project related emails out to a network drive in order to keep them as proeject reference material, I created a macro that passes the...
James and Jessica Hun...
jjhundley2000
Offline Send Email
Nov 4, 2004
8:23 pm
24607
I need an example of how to create and populate a toolbar control that is similar in appearance to the "Send/Receive" button in Outlook. The control button...
am_rup
Offline Send Email
Nov 4, 2004
9:01 pm
24608
When I am connected to Outlook using the Mapi Library, there are some applications that do not run until I close my app. Any suggestions as to what may be...
mirthandir_2000
Offline Send Email
Nov 4, 2004
9:18 pm
24609
To all: I am writing a program in VB .NET that needs to pick up all the unread messages in the inbox then move them to a root level folder. Getting the ...
Bill Tokar
tokarbil
Offline Send Email
Nov 5, 2004
5:00 am
24610
I don't know which applications you are referring to, but I have written applications that use Outlook and will not start if there is an instance of Outlook...
Bill Tokar
tokarbil
Offline Send Email
Nov 5, 2004
5:04 am
24611
What exactly does not work? Assuming that the folder must be created in the default store, all you really need to do is grab the parent of one of the default...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Nov 5, 2004
7:10 am
24612
I thought OWA is using WebDAV to access data?...
rolandleisch
Offline Send Email
Nov 5, 2004
7:44 am
24613
Extract from Exchange 2000 SDK: Programming Technologies ... Applications that use Microsoft® Exchange 2000 Server can access configuration settings and data...
Vaidotas Cibulskas
vaidokliz
Offline Send Email
Nov 5, 2004
9:17 am
24614
I found the bug. It wasn't anything to do with MAPI. I have all my calls to mapi in a worker thread, and the application that wouldn't run was doing a send...
mirthandir_2000
Offline Send Email
Nov 5, 2004
3:21 pm
24615
Thanks, I found that set the PR_RTF_IN_SYNC to FALSE tells Outlook that PR_BODY and PR_RTF_COMPRESSSED is not in sync. How can I create the compressed rtf data...
armins01
Offline Send Email
Nov 5, 2004
7:06 pm
24616
Use the WrapCompressedRtfStream function to create a compressed RTF stream on top of un uncompressed stream. To create an uncompressed RTF stream, you can use...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Nov 5, 2004
7:11 pm
24617
Not sure about newer versions of OWA, but OWA 5.5 was in CDO and ASP....
Eric Woodford
ericwoodford
Offline Send Email
Nov 5, 2004
11:10 pm
24618
I have the following method where I'm simply taking a CDO/MAPI folder, getting the Messages collection and then iterating over the MsgsCurrent collection. I...
Michael Herman (Paral...
mwherman2000
Offline Send Email
Nov 6, 2004
4:48 am
24619
Change the bolded line to msgSafe = new Redemption.SafeMailItem; msgSafe.Item = msgCurrent; ... From: Michael Herman (Parallelspace)...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Nov 6, 2004
5:15 am
24620
Hi Michael, You can do the following to resolve your problem: // insert this Redemption.SafeContactItem msgSafe = new Redemption.SafeContactItem() msgSafe.Item...
Ravindra Mohan
mohan_ravindra
Offline Send Email
Nov 6, 2004
8:18 am
24621
Hi Michael, You can use the following to solve your problem: Redemption.SafeContactItem msgSafe = new Redemption.SafeContactItem() msgSafe = msgsCurrent; ...
Ravindra Mohan
mohan_ravindra
Offline Send Email
Nov 6, 2004
8:19 am
24622
Hi Michael, You should use the following instead as you wanted to use the mailitem and not the contactitem as per my earlier post: Redemption.SafeMailItem...
Ravindra Mohan
mohan_ravindra
Offline Send Email
Nov 6, 2004
8:23 am
24623
Thanks Dmitry. The following worked: MAPI.Message msgCurrent = null; Redemption.SafeMailItem msgSafe = null; try { msgCurrent =...
Michael Herman (Paral...
mwherman2000
Offline Send Email
Nov 6, 2004
12:59 pm
24624
I'm taking the next step and trying to port the following CDO code to use Redemption. I've read about Redemption's dynamic binding here ...
Michael Herman (Paral...
mwherman2000
Offline Send Email
Nov 6, 2004
1:40 pm
24625
Previously I had ported my MAPI.Message code to use Redemption.SafeMail Item but the Outlook security dialog is now poping up for the bold line below. First,...
Michael Herman (Paral...
mwherman2000
Offline Send Email
Nov 6, 2004
3:28 pm
Messages 24596 - 24625 of 28048   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help