Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Custom Journal Entries

40 views
Skip to first unread message

Jerger

unread,
Jan 12, 2000, 3:00:00 AM1/12/00
to
I have recently been looking for information on how to make new (and/or
change existing) Journal Entry Types in Outlook 2000. I ran across a number
of postings on the subject, but I cannot seem to replicate the apparent
success that other people have had.

I add a new registry key to HKCU\Software\Microsoft\Shared
Tools\Outlook\Journaling and it doesn't show up w/in Outlook on the standard
Journal form. If I copy any existing key (say Phone Call) by exporting,
changing the name, and importing back to the registry, I get two copies of
the item Phone Call in the Entry Type dropdown list (even though one of the
key's is named differently in the registry). If I change the DescriptionID
of the newly added key, it disappears from the list. Is there another method
to adding entries? Can existing entry descriptions be changed?

Ken Slovak - [MVP - Outlook]

unread,
Jan 12, 2000, 3:00:00 AM1/12/00
to
For a custom Journal entry that is not supported natively by Outlook
you need a string key named Description that has the name of what you
want, such as "Appointment". The DescriptionID key is only for
built-in Journal entry types. Duplicating the DescriptionID key will
cause duplicate entries.

In Outlook 2000 you can use VBA to react to events in specific
folders. So to automatically Journal new Appointment items you would
need to handle the ItemAdd event for any Calendar folder and create
your own Journal entry in that event procedure.

There are a minimum of three required fields for a proper custom
Journal entry:
Small Icon String
Large Icon String
Description String

These others are not required, but may be useful to you:
AutoJournaled DWORD
JournalByContact DWORD
Enabled DWORD

The Large and Small Icon strings will need to be set depending on what
type of entry you want to create. The AutoJournaled, Enabled and
JournalByContact DWORDS should be set to 0, since only built-in entry
types are handled automatically. You can use those values if you write
your own code to handle automatic Journaling.

The combination of AutoJournaled and JournalByContact determines where
the entry type would show up in the Journal options. If AutoJournaled
= 1 then the type will show up in the section where things like Word
and Excel do. If both JournalByContact = 1 and AutoJournaled = 1 then
it will show up in the section where E-mail Message and Task Request
do. Enabled will reflect the checked state of the checkbox for the
Journal entry type in Tools|Options|Journal Options.

Here is what I have for a custom Appointment type entry, where the key
is "Appointment":
Description "Appointment"
Enabled 0x00000000
JournalByContact 0x00000000
AutoJournaled 0x00000000
Small Icon "[19]"
Large Icon "[19]"

Note that the Icon string values must be surrounded by [ ] symbols.

An entry similar to this will permit any new entry type to be added in
the dropdown combobox in a Journal entry.

--
Ken Slovak
[MVP - Outlook]
Lead Author, Professional Outlook 2000 Programming, Wrox Press
Co-author of "Programming Microsoft Outlook 2000", Chapters 8-13,
Appendices, Sams


Jerger <jer...@REMOVEsenet.com> wrote in message
news:s7pfle...@corp.supernews.com...

Jerger

unread,
Jan 12, 2000, 3:00:00 AM1/12/00
to
I will give this a try. Thanks for all the info.

Dan

Ken Slovak - [MVP - Outlook] <kens...@worldnet.att.net> wrote in message
news:#yTAdsTX$GA...@cppssbbsa02.microsoft.com...

Ken Slovak - [MVP - Outlook]

unread,
Jan 13, 2000, 3:00:00 AM1/13/00
to
Oddly enough though, some of the DescriptionID's seem to have been
assigned even though Outlook does not support Journaling of those
things natively. For example, Task is not supported for automatic
Journaling although it is available for use as a Journal entry type
with a DescriptionID of 37 (0x00000025) and Large and Small Icons of
"[11]".

Let us know if you still have any problems.

--
Ken Slovak
[MVP - Outlook]
Lead Author, Professional Outlook 2000 Programming, Wrox Press
Co-author of "Programming Microsoft Outlook 2000", Chapters 8-13,
Appendices, Sams


Jerger <jer...@REMOVEsenet.com> wrote in message

news:s7q6el...@corp.supernews.com...

gk....@googlemail.com

unread,
Jul 25, 2012, 8:59:03 AM7/25/12
to
On Wednesday, 12 January 2000 09:00:00 UTC+1, Ken Slovak - [MVP - Outlook] wrote:
> For a custom Journal entry that is not supported natively by Outlook
> you need a string key named Description that has the name of what you
> want, such as &quot;Appointment&quot;. The DescriptionID key is only for
> is &quot;Appointment&quot;:
> Description &quot;Appointment&quot;
> Enabled 0x00000000
> JournalByContact 0x00000000
> AutoJournaled 0x00000000
> Small Icon &quot;[19]&quot;
> Large Icon &quot;[19]&quot;
>
> Note that the Icon string values must be surrounded by [ ] symbols.
>
> An entry similar to this will permit any new entry type to be added in
> the dropdown combobox in a Journal entry.
>
> --
> Ken Slovak
> [MVP - Outlook]
> Lead Author, Professional Outlook 2000 Programming, Wrox Press
> Co-author of &quot;Programming Microsoft Outlook 2000&quot;, Chapters 8-13,
> Appendices, Sams
>
>
> Jerger &lt; wrote in message
>
> &gt; I have recently been looking for information on how to make new
> (and/or
> &gt; change existing) Journal Entry Types in Outlook 2000. I ran across a
> number
> &gt; of postings on the subject, but I cannot seem to replicate the
> apparent
> &gt; success that other people have had.
> &gt;
> &gt; I add a new registry key to HKCU\Software\Microsoft\Shared
> &gt; Tools\Outlook\Journaling and it doesn&#39;t show up w/in Outlook on the
> standard
> &gt; Journal form. If I copy any existing key (say Phone Call) by
> exporting,
> &gt; changing the name, and importing back to the registry, I get two
> copies of
> &gt; the item Phone Call in the Entry Type dropdown list (even though one
> of the
> &gt; key&#39;s is named differently in the registry). If I change the
> DescriptionID
> &gt; of the newly added key, it disappears from the list. Is there
> another method
> &gt; to adding entries? Can existing entry descriptions be changed?
> &gt;
> &gt;

Hi!
Sorry for digging up this rather old post.
I would like to track PDF file in journal. Is this possible at all?
Can I just create a new description "PDF"? And how would I point Outlook to my PDF-reader?
Would you be happy to write the respective code?

Thanks in advance!

Harry
0 new messages