Todd Bleeker's 12 Hive

All MindsharpBlogs

Are you pondering what I'm pondering?

My Links

Post Categories

Archives

Blog Stats

CEWP vs. OWA Web Part

More CEWP treasures languishing on my hard drive. I haven't checked to see if others have posted similar CEWP ideas but I doubt it.

 

The Out-of-the-Box (OOB) OWA Web Part initially looks like this:

It must be configured (something most user’s find difficult):

 

And it has limited functionality, you are often prompted to authenticate again, and it takes longer to load than the rest of the page:

 

The following CEWP lets users that have the Outlook client on their desktop work with any folder in a much richer interface than the OOB OWA Web Part. Since it just shows the local folders from Outlook, it also doesn't require configuration like the OOB OWA Web Part does. The Inbox and Tasks are used in the code sample but it could show Contacts, a public folder, etc. The sample also shows two folders but you can just show one or show a whole bunch organized within HTML however you’d like to display them. Of course, it’s only as up to date as Outlook:

 

<!-- Copy and paste this code into a CEWP -->

<OBJECT classid="CLSID:0006F063-0000-0000-C000-000000000046"

 width="100%">

  <param name="Folder" value="Inbox">

</OBJECT>

<OBJECT classid="CLSID:0006F063-0000-0000-C000-000000000046"

 width="100%">

  <param name="Folder" value="Tasks">

</OBJECT>

 

Yep, that’s it -- amazing isn’t it. Not really, it’s just using an object already installed on the desktop along with Outlook. So, you get all the functionality that you would normally have in Outlook on the Web page.

 

 

Unfortunately, none of these options provide the ability to create a NEW email message. So, I created this CEWP that has all the code necessary to create a new message. I just call the JavaScript on the OnClick of a button. I’m sure that the interface and the code could get a lot fancier (new Task, new Contact, etc.) but you get the idea (script does not work with Outlook 12):

 

<!-- Copy and paste this code into a CEWP -->

<script language="JavaScript" type="text/JavaScript">

function genNewEmail()

{

  try

  {

    o = new ActiveXObject("Outlook.Application");

    if(o)

    {

      mailFolder = o.getNameSpace("MAPI").getDefaultFolder(6);

 

      //You could also use custom forms like IPM.Note.CustomForm

      mailItem = mailFolder.Items.add("IPM.Note");

      mailItem.Display(0)

    }

  }

  catch(e)

  {

    window.status = e.Message;

  }

}

</script>

 

<input type="button" value="New Message" NAME="cmdNewMessage" OnClick="genNewEmail()">

 

 

When you click on the button you should get the new message dialog from your local Outlook installation.

 

<Todd />

 

PS: Watch out, code pasted into a blog post like this can introduce line breaks and odd spacing that can cause problems. I try to keep my lines shorter than 80 characters but look for unnatural line breaks.

posted on Thursday, August 17, 2006 8:59 AM

Feedback

# re: CEWP vs. OWA Web Part 8/18/2006 6:09 AM Kevin Buchan

Todd,

This is AWESOME. I played with this and have nearly every Outlook view saved as a seperate .DWP file. The one that is plaguing me (and seems to be of the most immediate value to me) is the "Outlook Today" home page.

Anyway, I made changes to your "genNewEmail" function that I think will better support new versions of Outlook. Just a guess.

Thanks again!

-Kevin Buchan
kevin.buchan@troutmansanders.com
(Code omitted since my comment post that included the code was not accepted.)
Please email me for the simple code change.

# Outlook Webparts mit dem Inhaltseditor-Webpart 8/21/2006 7:51 AM SharePoint, SharePoint and stuff

Todd Bleeker nutzt in seinem Artikel CEWP vs. OWA Web Part&nbsp;mit dem Outlook-Client installierte Komponenten,...

# re: CEWP vs. OWA Web Part 8/28/2006 8:56 AM Ben Weeks

Hi Todd, I like - made me wonder if you can embed Word docs in a similar way ...

<OBJECT CLASSID = "clsid:00020906-0000-0000-C000-000000000046"
WIDTH = 640
HEIGHT = 480>
<PARAM NAME="File" VALUE="http://download.microsoft.com/download/9/c/5/9c5b2167-8017-4bae-9fde-d599bac8184a/x64KMSigning.doc">
</OBJECT>

Does seem to work though - so I guess not :-(

# Displaying Embedded Documents in a SharePoint Web Page 8/30/2006 8:51 AM Webtechy Blog

Let's suppose you want to display Word documents within a SharePoint web page. H

# re: CEWP vs. OWA Web Part 8/31/2006 1:59 PM Todd Bleeker

You can show Word documents using the Page Viewer Web Part.

<Todd />

# re: CEWP vs. OWA Web Part 9/12/2007 4:23 PM Bob

I like this a lot. I used something very similar in 2003. Anyway, I have setup the calendar in the same fashion but I cannot control the view. Can you help me setup a script, very much like your new mail button, that lets the user select between, day, week, month view?

Thanks

#  10/24/2007 3:46 PM Aidan Garnish

Using the Content Editor Web Part to access Outlook inbox

# Using the Content Editor Web Part to access Outlook Inbox 11/14/2007 1:43 PM Mirrored Blogs

http://www.mindsharpblogs.com/todd/archive/2006/08/17/1250.aspx

# Setting the View 11/16/2007 2:02 PM Philip Waters

Don't use a Param to set the view
http://www.outlookcode.com/article.aspx?id=70

# re: CEWP vs. OWA Web Part 5/31/2008 9:34 AM Youtube

Let's suppose you want to display Word documents within a SharePoint web page. H

# re: CEWP vs. OWA Web Part 6/2/2008 5:14 AM Kız Oyunu

Can you help me setup a script, very much like your new mail button, that lets the user select between, day, week, month view

# re: CEWP vs. OWA Web Part 6/2/2008 5:15 AM Futbol Oyunu

hi. I like this a lot. I used something very similar in 2003. Anyway, I have setup the calendar in the same fashion but I cannot control the view.

# re: CEWP vs. OWA Web Part 6/5/2008 5:44 AM Youtube

thank you Todd.

# re: CEWP vs. OWA Web Part 6/12/2008 5:51 AM Skúli

Hi, your script is great! I used the New Mail script and it works fine on my computer (Office 2007, Outlook 12.0.6300.5000) but on every other computer with the same specs it doesn't, weird, but I am thinking it's because I need to load the Javascript in the <head> section, but am not sure. Anyway..

I was wondering about the calendar. I would like to display the calendar using a list, much like the task bar displays. An what's more I would like to customize the default view (for example not to display completed task and so forth. Can you point me to a website (or books) that help me customize the <object> so that the view can be altered from the defaults?

Best wishes, and thanks again!

# re: CEWP vs. OWA Web Part >> New Button does not working 6/23/2008 1:19 AM mohammad

Hi
the new Mail button always generate undefined javascript declaration at the browser status bar

# sohbet 6/29/2008 3:06 PM sohbet

10x

# Mirc 6/29/2008 5:50 PM Mirc

thans

# re: CEWP vs. OWA Web Part 7/3/2008 7:02 PM izlesene

great blog.thank you

# Chat 7/17/2008 10:37 AM Chat

Thank you my friend..

# re: CEWP vs. OWA Web Part 7/21/2008 2:48 PM çet

thansk.

# re: CEWP vs. OWA Web Part 7/21/2008 2:49 PM mircalem

thansk.

# re: CEWP vs. OWA Web Part 7/21/2008 2:49 PM youtube

thansk.

# çizgi film 8/11/2008 5:33 AM Çizgi Film

very good

# film izle 8/11/2008 5:33 AM film izle

very good

# gelinlikler 8/11/2008 5:34 AM Gelinlikler

very good

# masaüstü resimleri 8/11/2008 5:34 AM masaüstü resimleri

very good

# mercedes yedek parçaları 8/11/2008 5:34 AM Mercedes Yedek Parçaları

very good

# autocad kursu 8/11/2008 5:34 AM autocad kursu

very good

# müzik dinle 8/11/2008 5:34 AM müzik dinle

very good

# Bay 8/11/2008 5:35 AM Havuz

very good

# yemek tarifleri 8/11/2008 5:35 AM yemek tarifleri

very good

# Bay 8/11/2008 5:35 AM havuz

very good

# re: CEWP vs. OWA Web Part 8/14/2008 10:43 AM gaziosmanpaşa

very good

# re: CEWP vs. OWA Web Part 8/15/2008 1:51 PM bedava oyunlar

very nice writing

# re: CEWP vs. OWA Web Part 9/1/2008 8:46 AM parke

thank youu

# re: CEWP vs. OWA Web Part 9/1/2008 8:48 AM rüya tabirleri

thank youu

# karadeniz resimleri 9/2/2008 3:25 PM mavi

hi. thank you very much for this web site.

# re: CEWP vs. OWA Web Part Chat 9/4/2008 6:19 PM Sohbet

thanks

# re: CEWP vs. OWA Web Part MEhmet 9/4/2008 6:20 PM Chat

thanks

# saç ekimi 9/4/2008 6:22 PM caglara

thnak you

# re: CEWP vs. OWA Web Part 9/7/2008 8:36 PM Video Converter for Mac

To enjoy your favorite movie, video clips on your Mac OS, you need equiped with powerful video software on Mac, here you can find them.
http://wwww.downloadyoutubeformac.com/
http://wwww.flvconvertermac.com/

# re: CEWP vs. OWA Web Part 9/7/2008 8:36 PM Video Converter for Mac

http://wwww.divxtodvdconvertermac.com/
http://wwww.youtubeconvertermac.com/

# re: CEWP vs. OWA Web Part 9/11/2008 2:05 AM mırc

thanks.

# chat 9/11/2008 12:36 PM chat

chat, sohbet siteleri

# sohbet siteleri 9/11/2008 12:39 PM sohbet siteleri

chat, sohbet siteleri

# bayrak 9/14/2008 6:59 AM bayrak

thanxx

# film izle 9/14/2008 6:59 AM film izle

thanxx

# re: CEWP vs. OWA Web Part 9/16/2008 1:31 AM mirc

thanks.

# Sohbet 9/16/2008 2:34 AM Sohbet odalari

<a href="http://www.gencsohbetci.net" title="Sohbet" target="_blank">Sohbet</a>

thank you to all Panoramio for your job and very good

# Sohbet 9/16/2008 2:35 AM Sohbet

thanks you admins

# re: CEWP vs. OWA Web Part 9/16/2008 3:23 AM erotik shop

Congrulations for this nice web design..Usefull..

# re: CEWP vs. OWA Web Part 9/16/2008 4:41 AM chat

thanks.

# netlog 9/16/2008 8:46 AM netlog

thanks

# re: CEWP vs. OWA Web Part 9/21/2008 4:22 AM araba oyunu

Really great web site...Thanks.

# re: CEWP vs. OWA Web Part 9/21/2008 4:22 AM savaş oyunu


Thanks, for this information and news it was very useful to me

# re: CEWP vs. OWA Web Part 9/21/2008 4:24 AM kız oyunu

great article… thnx

# re: CEWP vs. OWA Web Part 9/21/2008 4:59 AM sohbet

Thank you very much

# re: CEWP vs. OWA Web Part 9/21/2008 8:45 AM sac modelleri

fine thanks nice very.

# re: CEWP vs. OWA Web Part 9/21/2008 11:43 AM Chat

thanks Magma..

# re: CEWP vs. OWA Web Part 9/22/2008 6:02 AM red

thank you

# re: CEWP vs. OWA Web Part 9/23/2008 4:12 AM Makina

Hi,
Good, Thank you for this lovely article keep going...

# re: CEWP vs. OWA Web Part 9/23/2008 1:24 PM sohbet

thanks very much

# re: CEWP vs. OWA Web Part 9/24/2008 6:04 AM Programlama

Oh dude, this is awsome thanks.

# re: CEWP vs. OWA Web Part 9/24/2008 10:07 AM film indir

thanks very nice

# re: CEWP vs. OWA Web Part 9/24/2008 6:59 PM web tasarım

special thanks sir.

# KralHikaye 9/25/2008 5:50 AM Sex Hikayeleri

Thanks very nice sharing

# re: CEWP vs. OWA Web Part 9/25/2008 12:19 PM gonulcafe

p.s.I'm sorry for my english

# re: CEWP vs. OWA Web Part 9/26/2008 8:43 PM oyun

i definately loved this thank you for the post it was very informative

# web tasarım 9/27/2008 3:38 AM web tasarım

thanxxx

# Firefox Download 9/27/2008 3:38 AM Firefox Download

thnxx you forthis.

# re: CEWP vs. OWA Web Part 9/28/2008 10:01 AM paylaşım

thanks

# re: CEWP vs. OWA Web Part 9/28/2008 4:19 PM youtube

thank u

# re: CEWP vs. OWA Web Part 9/28/2008 4:19 PM ucak bileti

thank u

# re: CEWP vs. OWA Web Part 9/28/2008 4:20 PM dizi izle

thank u for sharing

# re: CEWP vs. OWA Web Part 9/28/2008 4:20 PM şiir

thank u all

# re: CEWP vs. OWA Web Part 9/28/2008 4:53 PM Sohbet

<h1><a href="http://www.sohbetederiz.com">sohbet</a></h1>

thakns

# re: CEWP vs. OWA Web Part 9/28/2008 4:54 PM Sohbet

<h1><a href="http://www.sohbetederiz.com">Chat</a></h1>

# cinsel ürünler 9/29/2008 5:33 PM sexshop

thanks very.

# re: CEWP vs. OWA Web Part 9/30/2008 12:55 PM chat

www.arkadasyeri.net

# re: CEWP vs. OWA Web Part 9/30/2008 6:08 PM lida

thanks a lot

# re: CEWP vs. OWA Web Part 9/30/2008 6:09 PM lida

thank you

# re: CEWP vs. OWA Web Part 9/30/2008 6:09 PM tus

thanks

# re: CEWP vs. OWA Web Part 9/30/2008 6:10 PM oto kiralama

thank you very much for this links

# oda oyunları 10/1/2008 4:05 AM oda oyunları

Thanks

# re: CEWP vs. OWA Web Part 10/10/2008 4:30 AM geciktirici

geciktiricispreyler.com

# re: CEWP vs. OWA Web Part 10/10/2008 4:30 AM sex shop

aseks.com

# re: CEWP vs. OWA Web Part 10/10/2008 4:31 AM peruk

laraperuk.com

# re: CEWP vs. OWA Web Part 10/11/2008 1:31 AM ed hardy

I need Thank you!

# re: CEWP vs. OWA Web Part 10/11/2008 10:01 AM erotik shop

thanks.

# re: CEWP vs. OWA Web Part 10/11/2008 10:01 AM sex shop

very good thanks!.

# re: CEWP vs. OWA Web Part 10/11/2008 10:02 AM sexshop

thanks!

# re: CEWP vs. OWA Web Part 10/11/2008 10:03 AM seks shop

thanks..

# re: CEWP vs. OWA Web Part 10/11/2008 11:20 AM oyunlar

http://www.oyunara.net http://www.oyunim.com http://www.bizimmekan.com


thank you

# re: CEWP vs. OWA Web Part 10/16/2008 1:04 PM sohbet

Thank you very much

# re: CEWP vs. OWA Web Part 10/18/2008 5:18 AM mirc

thank you

# re: CEWP vs. OWA Web Part 10/18/2008 3:11 PM online Film izle

Thanks

# re: CEWP vs. OWA Web Part 10/18/2008 3:12 PM sohbet chat

werry good

# re: CEWP vs. OWA Web Part 10/18/2008 8:58 PM evden eve nakliyat

thnxx you forthis.

# porno izle 10/19/2008 3:42 AM porno izle

thank you

# re: CEWP vs. OWA Web Part 10/19/2008 9:37 AM chat

tenks

# re: CEWP vs. OWA Web Part 10/19/2008 9:38 AM sohbet

tenks

# re: CEWP vs. OWA Web Part 10/20/2008 12:37 AM mirc indir

Thanks

# re: CEWP vs. OWA Web Part 10/20/2008 8:12 AM mirc ekle

Thanks

# re: CEWP vs. OWA Web Part 10/20/2008 2:45 PM mircada

Thanks

# re: CEWP vs. OWA Web Part 10/21/2008 1:14 AM catlak

Thanks

# re: CEWP vs. OWA Web Part 10/21/2008 4:08 AM mirc

Thanks

# re: CEWP vs. OWA Web Part 10/21/2008 5:29 PM chat

thanks

# re: CEWP vs. OWA Web Part 10/21/2008 5:33 PM chat

thanks

# re: CEWP vs. OWA Web Part 10/24/2008 5:46 AM sohbet

thnak you

# re: CEWP vs. OWA Web Part 10/26/2008 3:16 AM pornolar

thanx man

# re: CEWP vs. OWA Web Part 10/28/2008 10:34 PM erotik videolar

onlardan thanks dielim very good!

# re: CEWP vs. OWA Web Part 10/29/2008 9:13 AM hekimboard

thanks.

# re: CEWP vs. OWA Web Part 10/29/2008 12:53 PM film izle

thankss

# re: CEWP vs. OWA Web Part 10/30/2008 5:09 AM ilaclama

veryy good

# re: CEWP vs. OWA Web Part 10/31/2008 2:15 AM ilaclama

veryy good

http://www.berfinilaclama.com
http://www.bocekilaclama.gen.tr
http://www.etkinilaclama.net

# re: CEWP vs. OWA Web Part 11/4/2008 9:09 AM dış cephe

thanks a lot.

# re: CEWP vs. OWA Web Part 11/5/2008 5:24 AM çet

thanks

# re: CEWP vs. OWA Web Part 11/5/2008 6:09 AM sohbet

Thanks..

# re: CEWP vs. OWA Web Part 11/7/2008 9:38 PM oyunlar

Thanks you really perfect one writing.I m always follow you.

# re: CEWP vs. OWA Web Part 11/12/2008 4:41 AM seks hikaye

i like this blog, thanks

# youtube 11/16/2008 5:15 AM youtube

thnx for sharing its perfect i like it its esay and perfct thnx al lot

# re: CEWP vs. OWA Web Part 11/17/2008 11:56 AM Chat

I had forgotten that leaving Columbia means leaving the 1 train behind. The past year has provided ample practice navigating

# re: CEWP vs. OWA Web Part 11/17/2008 11:56 AM Sohbet

So when I happened upon my friend’s Facebook proclamation, “My train is the 1 train!” I felt a distinct pang of nostalgia. In my eager anticipation of graduation

# re: CEWP vs. OWA Web Part 11/19/2008 2:14 AM oto kiralama

Thanks a lot man

# re: CEWP vs. OWA Web Part 11/19/2008 10:55 PM mirc

http://www.mirclen.org
http://www.klavyetc.org
http://www.sohbetigor.com

Title  
Name  
Url
CAPTCHA
Protected by Clearscreen.SharpHIPEnter the code you see:
Comments