Use OneNote as your Outlook notes replacement. They suck. Totally.
--
Josh Einstein (Tablet PC MVP)
Einstein Technologies
Tablet Enhancements for Outlook - Try it free: www.tabletoutlook.com
"CMM" <c...@nospam.com> wrote in message
news:6E2B97C7-056C-45C4...@microsoft.com...
I agree. I've been using them for years (and years and years).... they do
suck. But I still don't see why OneNote can't sync up with them and, say,
show them in the Unfiled notebook. For instance, my Outlook Notes
synchronize with my Yahoo account so I can access them from everywhere. But,
when I sync with my Windows Mobile smartphone, only OneNote notes are
supported (Outlook notes don't get synced without a 3rd party utility).
It's all a bit unesthetic and confusing. Outlook notes. OneNote notes. Vista
Sidebar notes. Big Frankenstein mess and hodgepodge of ideas MS throws out.
--
Josh Einstein (Tablet PC MVP)
Einstein Technologies
Tablet Enhancements for Outlook - Try it free: www.tabletoutlook.com
"CMM" <c...@nospam.com> wrote in message
news:561CDD45-1F7C-44F8...@microsoft.com...
They don't keep in sync, so I also wrote another addin for Outlook that
opens OneNote whenever you navigate to the sticky notes folder in Outlook.
You can get it at
http://blogs.msdn.com/johnguin/archive/2007/04/16/4-16.aspx.
Let me know what you think.
--
Thanks,
John Guin
OneNote Test Team
http://blogs.msdn.com/johnguin
Thanks. But, that's alright. :) I'm a developer too. I could do it. I've
considered writing add-ins on both ends (Outlook and OneNote) to keep them
synced. I'm very familiar (expert) with Outlook's OM, but not really
OneNote's.... so I figured it's not worth the hassle. You're right about the
"life support" thing. Sometimes it's tough to let go. :)
I still think MS could be doing a whole heck of a better job of creating a
uniform, intuitive user experience with these hodgepodge of tools.
If you are serious about trying to keep OL and ON notes in sync, you may
want to check out the OneNote object model project we have at
www.codeplex.com/onom. ON doesn't have an object model like Outlook - we
expose and import/export API. The OM project is building a layer on top of
that API to make moving data into and out of OneNote easier.
--
Thanks,
John Guin
OneNote Test Team
http://blogs.msdn.com/johnguin
"John Guin" <john (dot) guin (at) hotmail.com> wrote in message
news:0144D3D8-C4B3-4207...@microsoft.com...
Thanks John. I haven't looked at your solution yet, but I did pretty much
the same thing- quick and dirty- when I first decided to start using OneNote
but using Outlook's built-in VbaProject.OTM.... No COM or .NET add-in
necessary. Very simple (although Outlook's left-side Navigation Pane doesn't
flip back to the previous folder's although the rest of Outlook does...
seems like a bug to me):
'm_oMainExplorer set in the Application_MAPILogonComplete() event.
Private Sub m_oMainExplorer_FolderSwitch()
If m_oMainExplorer.CurrentFolder.FolderPath =
Application.GetNamespace("MAPI").GetDefaultFolder(olFolderNotes).FolderPath
Then
Shell "C:\Program Files\Microsoft Office\Office12\ONENOTE.EXE"
On Error Resume Next
If Not m_oLastFolder Is Nothing Then
Set m_oMainExplorer.CurrentFolder = m_oLastFolder
Else
Set m_oMainExplorer.CurrentFolder =
Application.GetNamespace("MAPI").GetDefaultFolder(olFolderInbox)
End If
On Error GoTo 0
Else
Set m_oLastFolder = m_oMainExplorer.CurrentFolder
End If
End Sub
I'll check out your exporter.
It would be nice to get an in-process addin option with access to the
command bar and navigation (or better yet the ribbon when they get around to
it.)
Thanks for the link, John. I wasn't really looking forward to doing it
anyway. :)
--
Josh Einstein (Tablet PC MVP)
Einstein Technologies
Tablet Enhancements for Outlook - Try it free: www.tabletoutlook.com
"CMM" <c...@nospam.com> wrote in message
news:A61051D6-FA3F-4684...@microsoft.com...