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?
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?