| Thread | Last Author | Messages read/total | Date |
|---|
| How to catch the click event of ASPX page in Outlook |
Ken Slovak - [MVP - O... |
0 / 6 |
29 Jan |
| Is there a question there?
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm
"Neetu" <Neetu@discussions.microsoft.com> wrote in message
news:A431256C-90B6-468C-A324-1E4F3BB79ACA@microsoft.com...
> in our case, outside code is... |
| Microsoft Exchange Client Extension v/s COM Add-in |
Ken Slovak - [MVP - O... |
0 / 5 |
29 Jan |
| Michael, "going forward" was what I said. The plans are to not support ECE's
in Outlook 14. So writing a new ECE at this point will limit the code to
Outlook 2007 and earlier. Sorry for the confusion.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.... |
| Stop baby eating in CHINA |
LPC |
0 / 1 |
29 Jan |
| Eat dogs, cats and baby look below:
http://z.about.com/d/urbanlegends/1/0/v/7/eating_babies1.jpg
http://z.about.com/d/urbanlegends/1/0/w/7/eating_babies2.jpg
http://888.rockin.net/propaganda-of-baby-eating/rumour.htm#true_story
info@imagiam.com... |
| Callbacks |
Ken Slovak - [MVP - O... |
0 / 3 |
28 Jan |
| I don't use C++, only VB/VB.NET/C#, so I can't answer specifically. I know
there is at least one sample using C++ on outlookcode.com and there are a
few others from MS. I don't have links, you'll have to search out the
samples yourself using something like Google.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder... |
| Extending outlook Add-in, Please suggest me |
Ken Slovak - [MVP - O... |
0 / 2 |
28 Jan |
| You cannot extend an addin written by another party where you don't have the
source code. You'd have to start from scratch with your own addin to add
whatever functionality you want and you'd somehow have to make it integrate
with Siebel if that's even possible.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager,... |
| Outlook Connector and restoring my deleted contacts |
Roady [MVP] |
0 / 2 |
27 Jan |
| But in Outlook the contacts still show in the Contacts folder of your
Hotmail account?
In that case, copy your contacts to a Contacts folder in your Personal
Folders (pst-file) folder set or create one. This will be your backup so
make sure they are indeed all properly copied.
Now remove the Hotmail account, restart Outlook and then add it again. Your
Hotmail account should now resync... |
| extract email address from body of message and put in csv |
Oliver Vukovics [Publ... |
0 / 2 |
26 Jan |
| Dear Amanda,
we developed a freeware tool that "search" in all your e-mail folders for
the sender email address and create new contacts in Outlook, if this e-mail
address was not found in other compared contact folders.
This Outlook contact folder can be exported in a ".csv" file.
It is not 100% the solution you are searching for, but it is a way to get
all email addresses you... |
| Form Region below Send Button |
Vela |
0 / 5 |
25 Jan |
| Thanks Sue. The task pane is placed above the Send button.
--
Thanks
Vela.
"Sue Mosher [MVP-Outlook]" wrote:
> Adjacent form regions always appear at the bottom of the Inspector window or task pane.
>
> I don't see any reason why you can't create a custom task pane and place it with DockPosition = msoCTPDockPositionTop, but I suspect that will make it appear just below the... |
| enumerate exchange email accounts |
Dmitry Streblechenko |
0 / 4 |
25 Jan |
| Keep in mind that Extended MAPI is not supported in the managed code.
If you need the identity of the primary mailbox, call
IMAPISession::QueryIdentity (wil return the entry id of the address entry
(IMailUser) corresponding to the current user),use the returned entry id to
call IAddrBook::OpenEntry, then read the PR_EMS_AB_PROXY_ADDRESSES property
to read all the proxy addresses... |
| Add a control / button inside the group - Ribbon Bar |
Vela |
0 / 4 |
25 Jan |
| Thanks Andrei and Ken.
I will just go with my own group then.
--
Thanks
Vela.
"Ken Slovak - [MVP - Outlook]" wrote:
> You can add groups to an existing tab and you can add new tabs but you can't
> add your own controls to an existing group unless you use <startFromScratch>
> and build the entire ribbon from scratch.
>
> --
> Ken Slovak
> [MVP - Outlook]
> http://www.... |
| VS Development environment - Outlook addin |
Ken Slovak - [MVP - O... |
0 / 2 |
25 Jan |
| No. Either maintain 2 dev environments, or develop completely for Outlook
2003 on an Outlook 2003 machine and don't take advantage of later properties
or methods except through reflection and late binding. Or you can abandon
VSTO, but the rule of thumb is that due to changes in various tlb's you
develop on and reference the oldest version of the Outlook PIA you want to
support. So no... |
| Accessing fields created from WebDAV through Outlook Object Model UserProperties |
Dmitry Streblechenko |
0 / 2 |
24 Jan |
| AFAIK WQebDAV does not upadte the special blob property where Outlook store
custom prop definitions used by the UserProperties collection.
The only workaround is to use PropertyAccessor in Outlook 2007 or CDO
1.21/Redemption/Extended MAPI.
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
"Jeff Van Boxtel" <sailorh@gmail.com>... |
| Item Write event is not always catched |
Ken Slovak - [MVP - O... |
0 / 3 |
24 Jan |
| Your event handler along with the reference it relies on are being garbage
collected and therefore no longer are valid. Declare appItem at the class
level so it stays alive and doesn't get garbage collected. I'd advise the
same thing for your Inspectors collection so your NewInspector event handler
stays alive.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author:... |
| View controls |
Sue Mosher [MVP-Outlook] |
0 / 2 |
23 Jan |
| You'd have to build your own control to do that, accounting for all the different pieces of the message that you might want to show.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54
"Cain T. S. Random" <cain@barracuda.com> wrote in message... |
| Desperately need help - how can I read Outlook contacts via IE add-in? |
Ken Slovak - [MVP - O... |
0 / 3 |
23 Jan |
| It's not that difficult if you know the Outlook object model and follow some
simple rules to mark your ActiveX control as safe for scripting and safe for
initialization if it will be started using automation from the Web site. Of
course any Outlook related code must run client-side on the target computer.
Then of course since the code will be running out-of-process with Outlook
(you... |
| Multiple new mail Inspectors |
goran |
0 / 1 |
22 Jan |
| Hi,
I used microeye example and Ken's InspectorWrapper to create Outlook 2003
add-in. This add-in adds a new CommandBar with a dropdown and command button
to the outlook toolbar. Everything is fine if I open multiple emails from
Inbox. I see exactly one
commandbar with dropdown and a button in it. But when I open multiple new
mail inspectors, it adds 2 command bars for second... |
| Inspector Warapper |
goran |
0 / 1 |
22 Jan |
| Hi,
I used example from microeye to create Outlook 2003 Add-in. This add-in adds
a new commandbar with a dropdown and command button to the Outlook toolbar.
Everthing is fine when I open multiple existing mails from Inbox. I see one
new commandbar with dropdown and a button in each inspector. But when I open
multiple new mail inspectors, than I see 2 commandbars in the second... |
| RDOSession |
Dmitry Streblechenko |
0 / 3 |
22 Jan |
| It is exposed on the Exchange folders, but not the PST ones.
What exactly are you trying to do?
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
"ck" <ck@discussions.microsoft.com> wrote in message
news:BD2D25F9-30C7-459D-A188-C569D58FD8DB@microsoft.com...
>
> Hi Dmitry,
>
> I didn't see the value PR_LAST_MODIFICATION_TIME... |
| MFC support for Outlook Add-In |
Ken Slovak - [MVP - O... |
0 / 2 |
21 Jan |
| Using MFC or anything else you must access the Outlook object model or use
Extended MAPI to access Outlook objects, or use another supported API.
There's no special support in MFC for Outlook addins.
There should be C++ samples for Outlook addins that you can find by googling
for that.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming... |
| Outlook connector and Gmail/Yahoo |
green |
0 / 1 |
21 Jan |
| I am able to connecect outlook connnector to my hotmail, and other passport
mail accound, however gmail and yahoo is not making connection. I use 2007
office.
Thanks,... |
| Folder last modification date |
ck |
0 / 11 |
20 Jan |
| Well, i guess i need to track the last modification time for folder
manually. Thanks for helping.
"Ken Slovak - [MVP - Outlook]" wrote:
> Bingo. Good eye, Sue.
>
> I finally got a chance to log into a PST file profile (on Outlook 2007) and
> there was no PR_LAST_MODIFICATION_TIME property there in any of the folders.
> I'm surprised, but it seems that property is store provider... |
| Forever |
Wikipedi |
0 / 1 |
20 Jan |
| <HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft DHTML Editing Control">
<TITLE></TITLE>
</HEAD>
<BODY>
<P> </P>
</BODY>
</HTML>... |
| Programatically creating calendar entry from delegate to owner's calendar |
Sue Mosher [MVP-Outlook] |
0 / 2 |
18 Jan |
| The code sample at http://www.outlookcode.com/codedetail.aspx?id=43 shows how to add an appointment to another user's Calendar using the MAPIFolder.Items.Add method. It's for VBA, but should be adaptable to your add-in.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.... |
| To get Items from multiple user created folders |
Ken Slovak - [MVP - O... |
0 / 2 |
18 Jan |
| If you know the location of the user created folders you can navigate there
using any folder's Folders collection. For example a subfolder of Inbox
would be in oFolderInbox.Folders. To find all folders you need to do a
recursive search starting at NameSpace.Folders and work down from there,
examining each MAPIFolder.Folders that's present.
--
Ken Slovak
[MVP - Outlook]
http://www.... |
| Send Individually Add-In by Sperry software "Problems" |
Ken Slovak - [MVP - O... |
0 / 6 |
18 Jan |
| I can't help you with a Sperry addin, I don't know anything about it and I'm
not associated with his company. I also don't do private support, no matter
where you live. If you can't get help from Sperry then ask for a refund of
your purchase.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders,... |
| Soliciting Custom Form Advice |
Ken Slovak - [MVP - O... |
0 / 5 |
17 Jan |
| Just remember that sending custom forms over the Internet is an arcane art
that is failure prone and that the recipient must also have the custom form
published, it must go in RTF so the TNEF wrapper is encapsulated in the
Winmail.dat attachment to be parsed on reception and that the server and
Outlook both must be set to send RTF over the Internet, send it for that
Recipient and not... |
| Outlook 2003 Event |
ck |
0 / 4 |
17 Jan |
| Thanks Michael!
Well, i managed to get the contact item by using this piece of code:
Private Sub myOlExp_SelectionChange()
Dim myOlItems As Outlook.Items
Dim myOlContactItem As Outlook.contactItem
Dim objSelected As Object
If myOlExp.Selection.Count > 0 Then
Set objSelected = Me.myOlExp.Selection.Item(1)
If (TypeOf objSelected Is Outlook.... |
| Changing Color on a Disabled Button |
Ken Slovak - [MVP - O... |
0 / 6 |
16 Jan |
| Even CEO's have to live with what's possible. If he doesn't feel that's
enough he's free to purchase MS and direct that the feature he wants is
added to Outlook and Office.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm
"PS"... |
| Change value of To field in compose window |
Sue Mosher [MVP-Outlook] |
0 / 2 |
16 Jan |
| Answered at http://www.outlookcode.com/threads.aspx?forumid=5&messageid=25439
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54
"Lokesh" <meet_lokesh@rediffmail.com> wrote in message news:Oy5YkkDWIHA.6140@TK2MSFTNGP02.phx.gbl...
>I have to change the value... |
| VS2008 OL2007 add-in with ClickOnce : Does not load |
Glenn |
0 / 5 |
16 Jan |
| On Jan 15, 5:34 pm, "Ken Slovak - [MVP - Outlook]"
<kenslo...@mvps.org> wrote:
> I haven't gotten into the deployment wonders of VS 2008 yet. It is a VSTO
> addin though.
>
> I'd post this in the MSDN VSTO forum rather than here. The VSTO team answers
> questions there so you're more likely to get a knowledgeable answer.
>
> FWIW, the deployment guide and product ID's and all the other... |
| How to create Outlook forms to display data fetched from database |
Sue Mosher [MVP-Outlook] |
0 / 2 |
15 Jan |
| 1) Code behind a published custom form (VBScript) or in an add-in. In Outlook 2007, form regions would also be a good solution. You might also find the developer tools at http://www.add-in-express.com useful.
2) Since Outlook custom forms and form regions are viewers for individual items, they have the read/write characteristics of the underlying items. You can, of course, make individual... |
| Develop COM Add-in and forms for Outlook |
Sue Mosher [MVP-Outlook] |
0 / 2 |
15 Jan |
| 1) Custom forms and form regions (Outlook 2007 only) display individual items. Since you want a "form" related to a folder, you should consider using a custom task pane (Outlook 2007 only) or folder home page, which is an HTML page that appears instead of the folder's contents. The WebViewURL property of a folder sets the address of the home page.
2) The Outlook object model, documented in... |
| Empty UserProperties and PropertyAccessor ( Outlook Spy ) |
Bob Martin |
0 / 10 |
14 Jan |
| I have encountered the same problem identified by Jeff. I am using Visual
Basic to interact with a FormRegion on a Contact form. I created four
UserProperty fields in the FormRegion by dragging them from the Field
Chooser, with the filter set to "UserProperties in this folder" (so I know
the problem is not due to the UserProperties not having been added to the
Contact folder). I have... |
| Outlook COM Addin and MAPI Provider |
Henry Gusakovsky |
0 / 2 |
14 Jan |
| I can't tell you what the problem is in your code
but you can try to find out it using my utility MAPISpy www.mapispy.com
.
Compare logs from your provider and logs from PST provider.
Regrads
Henry
Windoze:
> Hi
>
> I have a MAPI message store which works perfectly with Outlook 2007 but not
> with 2003. The problem I'm having with it is that HTML messages don't render
> in OL2003.... |
| BeforeFolderDelete event |
Ken Slovak - [MVP - O... |
0 / 2 |
14 Jan |
| There's a Folders.FolderRemove() event you can use but it fires after the
folder was removed and it doesn't tell you which folder was removed, just
that one of the folders was removed.
In Outlook 2007 there's a Folder.BeforeFolderMove event that fires before a
folder location is moved or before the folder is deleted. Of course you'd
have to have subscribed to that folder's events... |
| UserProperties and/or propertyaccessor on multiple access mail |
Christian |
0 / 3 |
14 Jan |
| no
I have not tryed that
"Ken Slovak - [MVP - Outlook]" wrote:
> Are you subscribing to the ItemChange event for the Items collection of that
> folder?
>
> If not you might have to wait for whatever synch is being done with
> SharePoint.
>
> --
> Ken Slovak
> [MVP - Outlook]
> http://www.slovaktech.com
> Author: Professional Programming Outlook 2007
> Reminder Manager,... |
| PR_USER_X509_CERTIFICATE PROP for assign a certificate to contact |
Gancev |
0 / 1 |
11 Jan |
| Hi,
I am trying to make a code that will import certificate file for contact
using c++.
The think is i didnt found anithing on the net but with outlook spy and MFC
mapi i conclude that PR_USER_X509_CERTIFICATE is the value where the
certificate(s) should be stored. This is the part of the code i use to assign
the certificate to a contact item in outlook:
{
#define... |
| Create and Get user-defined fields in folder |
Ken Slovak - [MVP - O... |
0 / 10 |
11 Jan |
| I think in almost all cases the store wouldn't let you create named
properties on a folder object. A user defined field in the folder is
probably the best you can do.
What would probably be a better alternative would be to create a hidden item
in the folder to hold any value or values you want. You can't do that either
with the Outlook object model (before Outlook 2007 where you can... |
| Migrating from Outlook 2003 to Outlook 2007 |
Ken Slovak - [MVP - O... |
0 / 4 |
10 Jan |
| Only that there will be no support for the new Ribbon for Inspectors, or for
any other new feature.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm
"Ajoyt" <Ajoyt@discussions.microsoft.com> wrote in message... |
| hot secret lesbian action |
yenc@yenc-news.co.uk |
0 / 1 |
09 Jan |
| ... |
| Difference between StoreIDs in Outlook 2007 and 2003 |
Dmitry Streblechenko |
0 / 3 |
08 Jan |
| Theoretically, there is no limit on the length of an entry id. Any entry id
must be treated as a black box and your code must be prepared to handle
entry ids of any length.
Practically, things will start falling apart when an entry length id is over
32kB. Anything in between is perfectly normal, make no assumptions about the
length or the contents.
Dmitry Streblechenko (MVP)... |
| get outlook theme color |
shubhangi |
0 / 1 |
08 Jan |
| hello
I've customized IPM.POST form not displaying Message page,displaying
P.2,P.3 pages only for OL 2007.I need to place AX ctrl (say ctl1, developed
using vb 6) on it.I want to show my customized page using the same color
that OL uses for Message page BackColor of Standard PostItem. Is it
possible?If so how to do this?
Thanks... |
| ResultsEvents_ItemAddEventHandler not fired in cached mode |
Ken Slovak - [MVP - O... |
0 / 9 |
07 Jan |
| Are you expecting the SearchResults.ItemAdd() handler to fire outside the
scope of the AdvancedSearchComplete() event handler? It makes sense that if
you keep an object at a scope where it won't get garbage collected the event
would remain in scope. If that's the case I'm sort of surprised it would
work in any mode. Possibly a difference in when the object is being garbage
collected.... |
| Preview Pane and Inspector Events |
Ken Slovak - [MVP - O... |
0 / 2 |
07 Jan |
| The item.Read event will fire when an item is displayed in the preview pane.
In addition, in Outlook 2007 you can use the Application.ItemLoad event to
know when an item is loaded by Outlook into its memory cache. That even can
fire when an item is previewed and also when an item is opened in an
Inspector.
You can also use the ActiveExplorer.SelectionChange event. When that event... |
| Determining if the Digitally Sign button is depressed |
Ken Slovak - [MVP - O... |
0 / 5 |
06 Jan |
| I know of no way to access anything much in the Envelope object. Some MAPI
property being changed or set if the button is depressed might not be true
unless the item is saved. I'd think then the MessageClass would be changed,
but I don't work with signed messages very often.
It's possible that MS has internal ways to get at that information that
aren't exposed to the outside world,... |
| How to compare two inspector objects? |
xwjbs |
0 / 5 |
05 Jan |
| I try to use settimer(),but it can't work either. I find that the __vfptr
member stay same all the time. Can i use it(i can't get it)? Would you like
to give me other advice? How to check it in a one thread? Thank you!
"Jeff" wrote:
> Hi
>
> As a quick thought, are your Inspector objects marshalled to different
> threads / appartments? If so, you'll not be able to check the... |
| Push BCM contacts to public folders |
Ken Slovak - [MVP - O... |
0 / 4 |
04 Jan |
| Accessing SQL Server is the same whether it's the desktop version (Express
or MSDE) or the server enterprise version.
You can use a timer that fires at intervals and check the system time in the
timer event and run the synch at a specified time, or at specified
intervals, or you can use any other method of scheduling that you want.
--
Ken Slovak
[MVP - Outlook]
http://www.... |
| Reply saved message |
Sue Mosher [MVP-Outlook] |
0 / 7 |
04 Jan |
| Since you have Outlook 2007, you can import the .msg file using the Namespace.OpenSharedItem method. The resulting item should have its original sender information intact, so you can reply to it.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54
"Misha"... |
| Choose Use Office word 2003 to edit email messages leads to fa |
Mike.N.Roy@gmail.com |
0 / 4 |
03 Jan |
| But is it possible to read the existing tool bars controls in a
WordMail Inspector?... |
| Compatability question |
Nad Af |
0 / 2 |
02 Jan |
| Now I downloaded and referenced MSOUTL9.OLB (for Outlook 2000) on my machine.
But my PC has Outlook 2003. The AddIn compiled and run fine!
"Dmitry Streblechenko" wrote:
> Depends on what exactly you do.
> As a general rule of thumb, you must reference (and hence develop on a
> machine with) the lowest suppred version of Outlook; 2000 in your case.
>
> Dmitry Streblechenko (MVP)... |