![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
![]()
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? |
#2
|
|||
|
|||
![]()
You cannot view certain files types as folder homepages and AFAIK, excel is
one of the types that is not supported. -- Diane Poremsky [MVP - Outlook] Author, Teach Yourself Outlook 2003 in 24 Hours Coauthor, OneNote 2003 for Windows (Visual QuickStart Guide) Need Help with Common Tasks? http://www.outlook-tips.net/beginner/ Outlook 2007: http://www.slipstick.com/outlook/ol2007/ "tee" wrote in message ups.com... 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? |
#3
|
|||
|
|||
![]()
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? Diane Poremsky wrote: You cannot view certain files types as folder homepages and AFAIK, excel is one of the types that is not supported. -- Diane Poremsky [MVP - Outlook] Author, Teach Yourself Outlook 2003 in 24 Hours Coauthor, OneNote 2003 for Windows (Visual QuickStart Guide) Need Help with Common Tasks? http://www.outlook-tips.net/beginner/ Outlook 2007: http://www.slipstick.com/outlook/ol2007/ "tee" wrote in message ups.com... 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? |
#4
|
|||
|
|||
![]()
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 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "tee" wrote in message oups.com... 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? Diane Poremsky wrote: You cannot view certain files types as folder homepages and AFAIK, excel is one of the types that is not supported. "tee" wrote in message ups.com... 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? |
#5
|
|||
|
|||
![]()
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. Sue Mosher [MVP-Outlook] wrote: 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 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "tee" wrote in message oups.com... 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? Diane Poremsky wrote: You cannot view certain files types as folder homepages and AFAIK, excel is one of the types that is not supported. "tee" wrote in message ups.com... 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? |
#6
|
|||
|
|||
![]()
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 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "tee" wrote in message ups.com... 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. Sue Mosher [MVP-Outlook] wrote: 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. "tee" wrote in message oups.com... 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? Diane Poremsky wrote: You cannot view certain files types as folder homepages and AFAIK, excel is one of the types that is not supported. "tee" wrote in message ups.com... 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? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
'Home Page' in Outlook 2007 Beta 2 | Sue Mosher [MVP-Outlook] | Add-ins for Outlook | 0 | June 9th 06 07:29 PM |
'Home Page' in Outlook 2007 Beta 2 | JoelRosenberger | Add-ins for Outlook | 2 | June 9th 06 01:58 PM |
Restoring Home Page Default in IE6 Under XP=Pro | Jamess B. Holladay | Outlook Express | 1 | March 18th 06 08:05 PM |
why does outlook 2003 go to my email home page | jeff1202 | Outlook - Installation | 0 | March 15th 06 12:01 AM |
All Hyper Links Direct me to my home page | Scott | Outlook - General Queries | 0 | January 11th 06 03:11 PM |