D
dh
I have a custom Outlook form that has an excel object ("spreadsheet") that
works fine in Outlook 2000/Windows 2k. When we try to open a form in
Outlook 2003 on an XP machine, we get the following error message:
"Could not find the specified object Line no. 5"
viewing the code, line 5 is: Set XLSheet = oPage.Controls("Spreadsheet1")
and the other error message is:
" could not open some objects because they are not available on this
machine"
Is this a show stopper, or does it just require a reconfig of the newer
version of Office/Outlook
Thanks!
DH
PS all of the code from the form is as follows:
Dim XLSheet
Function Item_Open()
Set oPage = Item.GetInspector.ModifiedFormPages("Message")
Set XLSheet = oPage.Controls("Spreadsheet1")
XLSheet.HTMLData = Item.Body
Item.Subject = Item.Subject 'Dirty the form
End Function
Function Item_Write()
Item.Body = XLSheet.HTMLData
End Function
works fine in Outlook 2000/Windows 2k. When we try to open a form in
Outlook 2003 on an XP machine, we get the following error message:
"Could not find the specified object Line no. 5"
viewing the code, line 5 is: Set XLSheet = oPage.Controls("Spreadsheet1")
and the other error message is:
" could not open some objects because they are not available on this
machine"
Is this a show stopper, or does it just require a reconfig of the newer
version of Office/Outlook
Thanks!
DH
PS all of the code from the form is as follows:
Dim XLSheet
Function Item_Open()
Set oPage = Item.GetInspector.ModifiedFormPages("Message")
Set XLSheet = oPage.Controls("Spreadsheet1")
XLSheet.HTMLData = Item.Body
Item.Subject = Item.Subject 'Dirty the form
End Function
Function Item_Write()
Item.Body = XLSheet.HTMLData
End Function