Can I suppress the additional tab in the customized appointment form in the receiver side?

  • Thread starter Thread starter David Zhuang
  • Start date Start date
D

David Zhuang

Hi, All,
I have a customized appointment form (C.oft) file using the VB
scripts, it has an additional tab called "meetinginfo", then I send
out the form, the receiver receive the customized appointment form,
and open the invitation item, there is the tab "meetinginfo"shown up
in the receiver side, can I suppress the "meetinginfo" tab in the
receiver side?

I have the following code, some how it is not working, can you provide
solution or some advice, thank you in advance!

'Begin of the code

Function Item_Open()

if (check it is a receiver ) then
Set inspector=Item.GetInspector
inspector.HideFormPage("meetinginfo")
else
if (check it is the sender) then
item.MessageClass=MEETINGINFO_CLASSID
Set inspector=Item.GetInspector
inspector.ShowFormPage("meetinginfo")
end if
end if

'end of the code

I try to debug the code from the receiver side, when I go to the "view
code", get the error message as "Internal application error", Is this
because of the VB script is not passed to the receiver?
 
Have you tried using the Form > Seperate Read Layout
option - you can then set the "Read" page not to display
but leave the "Compose" page to display
Not sure if this is what you were after but hope it helps
B
 
Back
Top