| Thread | Last Author | Messages read/total | Date |
|---|
| C++ and Explorers |
cainrandom@gmail.com |
6 / 6 |
28 Oct |
| ... |
| Outlook Folder pick tree |
Andy Grothe |
5 / 5 |
28 Oct |
| hello,
here is another example for outlooks "PickFolder".
http://p-serv.de/en/index.php?option=com_content&task=view&id=74&Itemid=102
is this what you looking for??
"Tom Serface" wrote:
> Hi Michael,
>
> I think the folder list in Outlook is just a tree control with some icons.
>
> http://www.codeproject.com/KB/tree/TreeHighIcon.aspx
> http://www.functionx.... |
| Ribbon icon size |
Ken Slovak - [MVP - O... |
2 / 2 |
27 Oct |
| Not all in one place that I've ever seen, no. Just hints in various
documents and blog entries.
I usually use a PNG file so I can have transparency built into the icon. I
use either 24-bit or 32-bit color depth with almost any image size at 96
dpi. I've used anything from 32x32 pixels to 441x431 pixels with no
problems.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com... |
| how to set outlook 2003to cannot send mail without subject,att |
venu |
3 / 3 |
27 Oct |
| Thanks a lot for your responce its working.
"Alan Moseley" wrote:
> Insert the following code into your ThisOutlookSession code window.
>
> Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
> Dim mi As MailItem
> Set mi = Item
> If mi.Subject = "" Or mi.Attachments.Count = 0 Then
> Cancel = True
> End If
> set mi=Nothing
> End... |
| Events for Preview Pane |
Dmitry Streblechenko |
1 / 1 |
26 Oct |
| No, there are no preview pane sapeific events.
--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Michael Tissington" <michael@nospam.newsgroups.com> wrote in message
news:e6s3J8yNJHA.728@TK2MSFTNGP06.phx.gbl...
> Are any events associated with the Preview Pane ?
> Is it a pseudo Inspector ?... |
| Create OlItemType.olMailItem via Redemption |
Dmitry Streblechenko |
2 / 2 |
26 Oct |
| Even if Outlook is not running, that code should still work fine.
If you want Redemption with no OOM, try something like the following:
set Session = CreateObject("Redemption.RDOSession")
Session.Logon
set Drafts = Session.GetDefaultFolder(olFolderDrafts)
set Msg = Drafts.Items.Add
Msg.Subject = "test"
Msg.Display(true)
--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/... |
| Create OlItemType.olMailItem via Redemption |
j |
1 / 1 |
25 Oct |
| Hi,
WinXP SP2, Outlook 2003, .NET 2.0 C#.
I have win application that one of it feature is open mailItem window
( inspector ).
Currently i do the next:
Microsoft.Office.Interop.Outlook.Application app = new
Microsoft.Office.Interop.Outlook.Application();
MailItem mItem =
(MailItem)app.OutlookInstance.CreateItem(OlItemType.olMailItem);
mItem.Subject = "bla bla bla";
........... |
| Disabling Exchange client extension from add-in |
necnec via OfficeKB.com |
10 / 10 |
25 Oct |
| Thanks a lot Dmitry! I've changed to the logic of my app to release Explorer.
Selection every x messages, and it works like a charm.
Nec
Dmitry Streblechenko wrote:
>This has nothign to do with copying messages, but rather with accessing the
>Explorer.Selection collection.
>You might also want to look at
>http://blogs.msdn.... |
| Microsoft Outlook Add in for Data Collection and Publishing wpmt |
jz |
2 / 2 |
24 Oct |
| I am having the same problem. It worked for a week then I get the same Error
Message. I tried a complete reinstall and that didn't work. Please help.
"Steve" wrote:
> I am trying to utilize the Collect Data via e-mail function and keep
> receiving the following error:
>
> "The Microsoft Office Access Outlook Add-in is disabled in Microsoft Office
> Outlook 2007. To collect... |
| Outlook 2007 add-ins help please |
Ken Slovak - [MVP - O... |
4 / 4 |
22 Oct |
| I don't understand. If you have VBA code and you want it to run in Outlook
2007 just add the code to your Outlook VBA project. Use Alt+F11 to open the
Outlook VBA project and add your code there if it isn't there already.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.... |
| Getting a handle on a form region |
Ken Slovak - [MVP - O... |
2 / 2 |
21 Oct |
| When your init code is called to initialize the form region it probably is
passing an Outlook.FormRegion interface object. I do that in the
BeforeFormRegionShow() event handler. In that handler I call to Init() and
pass the FormRegion object passed to BeforeFormRegionShow() as "Region".
That FormRegion object is used to hook up the Close() and Expanded() event
handlers. The item... |
| Customize Outlook Native UI? |
TC |
3 / 3 |
20 Oct |
| Thanks Ken!
I believe that this is exactly what I was looking for.
-- Todd
"Ken Slovak - [MVP - Outlook]" <kenslovak@mvps.org> wrote in message
news:Ob%23LoqrMJHA.728@TK2MSFTNGP03.phx.gbl...
> Outlook version?
>
> For Outlook 2007 you can use the Custom Task Pane object to add a task
> pane to either an Inspector or Explorer window.
>
> For earlier versions of Outlook... |
| Adding a custom picture to command bar button |
Andrew |
4 / 4 |
17 Oct |
| Thanks, I'm going to try it out and see how it works.
"Ken Slovak - [MVP - Outlook]" wrote:
> Outlook version?
>
> If 2003 or 2002 you can use the Picture and Mask properties of the
> CommandBarButton object and pass IPictureDisp objects, except in cases of
> WordMail, where you can't pass an IPictureDisp across process boundaries.
>
> If 2000 or for WordMail you must use... |
| Outlook 2007 Beta and vpmsece3.dll |
Tiago Intela |
7 / 7 |
17 Oct |
| I am also having same problem. I tried to follow some instructions that I got
from internet but did not work. I went to regedit and manually removed all
symantec related files. is it because I didn't restart my computer in order
for it to take effects or what?? Pls help.
Regards
Tiago
"Paul" wrote:
> Good afternoon, Darryl!
>
> I'm running Outlook 2003, and also... |
| Politics |
Amy |
1 / 1 |
16 Oct |
| handler nonvirtualaddressing npannoying involving megabytes gcos expands worshipped pyoob... |
| Outlook Add in 2003 fails to load |
Andrew |
10 / 10 |
16 Oct |
| Hey Dave,
You were right, my first development machine for the 2003 add-in was set up
to deploy the interops and vstoruntime files, but I didn't set up my new
machine to do that. After I completed that and ran the setup.exe file on the
test machine, it installed the interops and vstoruntime. Now launching
outlook in "headless" mode does not change the loadbehaviour. Thanks a lot... |
| C# Add-in for outlook to search and create a link |
arnott |
1 / 1 |
16 Oct |
| hi All,
I am new to C#. I am using Visual Studio 2008 with visual studio tools for
office and outlook 2007. I want create a add-in that will search incoming
messages and find the text with something like "pdfile://1234" and make it a
click-able link, and when the link is clicked launch a event handler that
will open another application to fetch the document.
I found some examples... |
| Icons disapear from a CommanBar |
Minor, Thomas |
15 / 15 |
16 Oct |
| Hi Ken,
it seems you did miss the fact that my problem was solved.
It was a timing problem and could be fixed with a ::Sleep().
I think it is related to multi-core, multi-processor issues.
Thanks for the help.
--
Thomas Minor
--
"Ken Slovak - [MVP - Outlook]" <kenslovak@mvps.org> schrieb im Newsbeitrag
news:uXwsJl1FJHA.4228@TK2MSFTNGP05.phx.gbl...
> Please don't hijack... |
| Can not add CommandBar if "Word 2003 to read Rich Text e-mail" is selected. |
Ken Slovak - [MVP - O... |
7 / 7 |
16 Oct |
| There's no such event, and I've never needed it.
I just use the first Inspector.Activate() event and in that event I check
for the Outlook version. If it's less than 12 (Outlook 2003 or earlier) and
.IsWordMail() == true I call to initiate my Word objects like this, where
"_insp" is my wrapper class level Inspector object, and "_doc" is a class
level Word.Document object:
_doc =... |
| Capture new category event |
Michael Bauer [MVP - ... |
4 / 4 |
16 Oct |
| Since Outlook 07 there's a Categories collection, which you might check at
intervals.
--
Best regards
Michael Bauer - MVP Outlook
: VBOffice Reporter for Data Analysis & Reporting
: Outlook Categories? Category Manager Is Your Tool
: <http://www.vboffice.net/product.html?pub=6&lang=en>
Am Thu, 16 Oct 2008 00:30:00 -0700 schrieb Dave:
> Hi
>
> Thanks for the... |
| publish content of an email |
cainrandom@gmail.com |
4 / 4 |
15 Oct |
| ... |
| Saving msgs in a folder |
Dmitry Streblechenko |
2 / 2 |
15 Oct |
| See my reply in microsoft.public.win32.programmer.messaging
Please do not multipost.
--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Exchnerd" <sanjuraja@gmail.com> wrote in message
news:a2face33-ded4-4ad6-b9e8-653aebefa53f@r37g2000prr.googlegroups.com...
> Hi,
>
> I have a .msg file and would like to save this in a .... |
| Developing Plug-In for Outlook 2003 and 2007 |
pxb |
3 / 3 |
15 Oct |
| "cainrandom@gmail.com" wrote:
> On Oct 15, 3:49 am, pxb <p...@discussions.microsoft.com> wrote:
> > For developing Plug-in for both Outlook 2003 and 2007, do we need to develop
> > 2 different versions or can one package be developed to support both?
> >
> > And what would be the recommended dev tools for doing such programming?
>
> If 2003 is the oldest version you care to... |
| Customizing the preview pane |
Sue Mosher [MVP-Outlook] |
2 / 2 |
15 Oct |
| Hi Michael! The extensibility features in Outlook don't include any way to do
that. You'd have to do some Windows API hacking.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54
"Michael Tissington" wrote:
> In the preview pane for email Outlook displays... |
| Business Address: Format |
J.R. Winder |
5 / 5 |
14 Oct |
| thanks. I'll get one my programmers to do just that.
JR
"Ken Slovak - [MVP - Outlook]" <kenslovak@mvps.org> wrote in message
news:uWKkUZjLJHA.1156@TK2MSFTNGP04.phx.gbl...
> Nothing that I know of just using a template, you'd have to write code for
> that.
>
> --
> Ken Slovak
> [MVP - Outlook]
> http://www.slovaktech.com
> Author: Professional Programming Outlook 2007.
>... |
| Outlook 2007: pbm with installation of backup utility (pfbackup) |
Daniel |
1 / 1 |
14 Oct |
| Hi everybody,
just got new PC with Vista.
I installed the pfbackup utility on my Outlook 2007.
the installation process went fine, and the utility seems to be installed
and present in the list of programs installed, as seen in the control panel.
however, the backup command is not available in the File menu.
I tried several times to desinstall and re-install it, closing then... |
| Outlook Add in for Data Collection and Publishing: Add-in Won't L |
Steve |
1 / 1 |
13 Oct |
| I am trying to utilize the Collect Data via e-mail function and keep
receiving the following error:
"The Microsoft Office Access Outlook Add-in is disabled in Microsoft Office
Outlook 2007. To collect data by using e-mail messages in Microsoft Access
2007, verify that this add-in is installed and enabled from within Office
Outlook 2007."
I have tried to remediate via the Trust... |
| Controls not notified when customtaskpane is resized |
Ken Slovak - [MVP - O... |
2 / 2 |
13 Oct |
| If you cast the ContentControl of the CTP to a forms Control object does it
cause an exception? If not then you might be able to do that and subscribe
to the SizeChanged() event.
If that doesn't work then you might just have to use a hack of finding your
CTP as a window using a Win32 API call and then hook to any message sent to
that window. Then you can look for a resize message... |
| VSTO Add-In Deployment |
Ken Slovak - [MVP - O... |
4 / 4 |
10 Oct |
| You need them as prereq's yes. If Framework is installed prior to
installation of Office 2007 they should be installed automatically unless a
custom installation prevents installation of the PIA's but best practice is
to always check for the prereq's and install them if they're not there.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming... |
| Releasing COM Components |
Ken Slovak - [MVP - O... |
4 / 4 |
10 Oct |
| In that case in addition to setting all COM objects to null in the
procedures where you declare them you should also use
Marshal.ReleaseComObject() on them if you no longer need the objects or any
other related objects.
For example, if you have a locally declared Inspector object don't use
Marshal.ReleaseComObject() on it if you still need other instances of that
object anywhere in... |
| Installing outlook com add in for standard users on terminal server |
Ken Slovak - [MVP - O... |
2 / 2 |
10 Oct |
| If the addin is registered in HKLM it should be available no matter what
Windows profile is used, if registered in HKCU it's only registered for that
admin login.
--
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
"IceKettle"... |
| How synchronize customs field outlook 2007? |
Valeriy Bondarenko |
1 / 1 |
09 Oct |
| Hi all,
My task: develop addins for outlook 2007, on contact form I have field
"Standing", contact folder linked with Sharepoint server 2007, where I have
site column "Standing".
How I synchronize these fields?
Can I use _SyncObject?
Thank you... |
| Adding custom buttons to the Standard toolbar versus a custom toolbar |
cainrandom@gmail.com |
3 / 3 |
09 Oct |
| ... |
| Preventing meeting invitees from seeing/receiving my custom form |
2degreeskelvin@gmail.com |
1 / 1 |
09 Oct |
| I have designed a custom Meeting Request form. The intent of the form
is that the meeting organizer can enter data into the form, that data
is used to generate some text that gets inserted the message body (via
an add-in) when the user clicks send and the recipients will receive
the meeting request. However, when the meeting request is sent, the
recipients will see my custom form in the... |
| attachment preview |
sophie |
5 / 5 |
09 Oct |
| Thanks, Ken.
I have resolve this problem in another way.
I found that if i remove or add the attachment when user check the
attachment list, it will be much easy. And it works all right.
Thanks again.
"Ken Slovak - [MVP - Outlook]" wrote:
> The code doesn't show it but I assume that objMailItem is set previous to
> any of those methods or event handlers being called?
>
>... |
| attachment location |
sophie |
3 / 3 |
08 Oct |
| Thanks sue.
I will try in this way.
"Sue Mosher [MVP-Outlook]" wrote:
> A file attached to a message is contained in that message, in the Attachments
> collection. Outlook neither knows nor cares about the original location of
> the file, which may no longer even exist.
>
> If you want to do some work on that file, you need to save it to the local
> drive using the Attachment.... |
| Outlook Mail Item Open Event Doesn't Work |
Ken Slovak - [MVP - O... |
4 / 4 |
08 Oct |
| When you use the new keyword you create a new instance of your class. That's
what's required and why it works when you do use that keyword, as you
already said.
I usually handle things differently myself. I use an Inspector wrapper class
that has in it declarations for a mail item and event handlers for that mail
item and for the Inspector itself (Activate, Close, etc.). When I get... |
| Loading your OL addin without restarting OL |
Ken Slovak - [MVP - O... |
4 / 4 |
07 Oct |
| I don't know exactly what that addin or installer is doing, but I can guess.
If the installer installs the addin that registers it in either HKCU or HKLM
as an Outlook addin. Then if it has something like a custom action that is
called which checks to see if an Outlook session is running and if so it
gets the COMAddins collection. That should read all registered addins in
both HKCU... |
| Add Outlook (2007) folder above Inbox when using Cached Exchange M |
Ryan Taylor |
2 / 2 |
07 Oct |
| Please disregard this question. It turns out my loop was wrong, I needed a
<=, instead of simply <. When comparing, it looks like my custom folder is
returned in a different in order depending on cached or non cached mode.
For non cached mode: it was returned 7th (out of 14)
For cached mode: it was returned 14th (out of 14th)
Thanks,
Ryan
"Ryan Taylor" wrote:
> Hello,
>
>... |
| adding button like encryption and signing information button |
Ken Slovak - [MVP - O... |
3 / 3 |
07 Oct |
| You can't do that. You would have to use custom forms with custom message
classes and assign the icons you want to those custom message classes. The
actual window where those icons appear in the UI isn't exposed to you for
modifications.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders,... |
| Connector for Domino |
jingo_man |
1 / 1 |
07 Oct |
| Wayne - the link you provided simply takes me back to the "Outlook Program
Add Ins" discussion forum... any chance of resending the direct link please?
Fran or Wayne - if you could alternatively provide the solution here, that
would also be much appreciated. i reckon it might be to do with Office 2003
SP1..?
regards
jingo_man
"Fran" wrote:
> Thanks, Thanks, Thanks,... |
| TaskRequest Item Showform |
sophie |
4 / 4 |
07 Oct |
| thank you for your reply.
i will try.
"Ken Slovak - [MVP - Outlook]" wrote:
> Try using a task item instead of a task request item.
>
> --
> 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
>
>
> "sophie"... |
| Outlook View Control Folder property |
Nenad Dobrilovic |
3 / 3 |
06 Oct |
| I have some clarification regarding my solution to the issue. Problem is not
in the specific name of the storage (I mentioned "Documents") but in the fact
that, for some reason, any name of the storage become a problem.
When I change a name of the external storage (see code above) to be some
new, everything works fine for some time, but than suddenly, unknown COM
exception shows up.... |
| Release COM components |
Ken Slovak - [MVP - O... |
4 / 4 |
03 Oct |
| I prefer not to use Dispose unless something calls it directly. In my
experiments with Dispose I've seen it not fire until after Outlook
disappeared from the UI, so you never know when it will be called. I prefer
to control things myself so I usually implement a "kill' method that I call.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming... |
| Registry Entry |
Gordon |
9 / 9 |
03 Oct |
| Fixed! It was problem with releasing the command bar. Thank you Ken
"Ken Slovak - [MVP - Outlook]" <kenslovak@mvps.org> wrote in message
news:OgGj8TWJJHA.4672@TK2MSFTNGP05.phx.gbl...
> No, that's not a known problem with addins and Outlook 2007/Vista.
>
> That usually indicates that either you aren't releasing all of your
> objects or are taking way too long to release them, or that... |
| Advice needed |
Tom [Pepper] Willett |
3 / 3 |
03 Oct |
| Symantec says that there are 1,980 threats on that site:
http://safeweb.norton.com/report/show?name=quicksoftupdate.com
"Milly Staples [MVP - Outlook]" <what@ever.com> wrote in message
news:C5C0D0DF-7ECA-4019-AFE1-72EACECA361D@microsoft.com...
: This is not an Outlook question. Plus you posted this to every completely
: irrelevant groups.
:
: I would suggest using the product's... |
| Unknown Outlook MailItem EntryID |
Ken Slovak - [MVP - O... |
4 / 4 |
03 Oct |
| Don't forget that EntryID will change when an item is moved from one store
to another (mailbox to PST for example).
If you were using a lower level API such as Extended MAPI, CDO 1.21 or
Redemption (www.dimastr.com/redemption) you could use the CompareIDs()
method to compare a short-term id with a long-term one and get equality if
they reference the same item.
--
Ken Slovak... |
| My Outlook button appears in Word! |
regify@googlemail.com |
6 / 6 |
01 Oct |
| Thank you!
Kukulkan... |
| Still no idea. Try'd another trick... |
Michael Bauer [MVP - ... |
2 / 2 |
01 Oct |
| ... |
| Best Practice UI handling for long-running code |
Ken Slovak - [MVP - O... |
2 / 2 |
30 Sep |
| The actual Web service call can be made asynchronously using a background
worker thread. Any processing using the Outlook object model should always
be done in the main thread however, otherwise you crash or hang Outlook.
If the processing can take a long time using the Outlook object model then
you can divide it into a few parts and use a timer to determine when each
piece of the... |