Excel as folder home page in Outlook2003

  • Thread starter Thread starter tee
  • Start date Start date
T

tee

i want to open an Excel file as default home page for a folder
in outlook 2003.

I went to home page tab of the properties of that folder and
gave the excel path as well as Show the page check box as clicked.

But i am not able to view the Excel sheet. Instead some garbage
values are coming. But i am able to see .htm files and .xml files.

What should i do to see the excel file? is the security features
are the problem for Outlook2003 also?
 
You cannot view certain files types as folder homepages and AFAIK, excel is
one of the types that is not supported.
 
Thank you Diane..

I tried the following code
app = New Excel.Application
wb = app.Workbooks.Open("E:\Book1.xls", 0, False, 5, "",
"", False, Excel.XlPlatform.xlWindows, "", True, False, 0, True, False,
False)
app.Visible = True

Now excel is opening outside of outlook as a separate window.
But I want to get this Excel to be opened within outlook.
Any way to open it inside outlook?
Is this possible in any version of outlook?
 
As Diane said, an Excel worksheet cannot operate as a folder home page. You could, however, embed the Microsoft spreadsheet control in a web page and display the worksheet by that means.
--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
thank you so much.
now i am able to open excel at folder homepage by the method you said.
but the graphical representations like charts in excel are not shown
when it is embedded in webpage.
Can you suggest any method to acheive the same.

thanks in advance.
 
Not really an Outlook question, but I think there is a separate chart web component. Please refer to the Excel help topic "Putting Microsoft Excel data on the Web".

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
Back
Top