You could use a MsgBox statement to show a message box to the sender, but all the recipient will see is the sent message.

Signature
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54
> Hi all,
>
[quoted text clipped - 4 lines]
> come up (only for the reciever, the sender does not see it). Is this
> possible in Outlook 2003?
prog - 23 Oct 2007 20:09 GMT
I need it to be a textbox that is attached on the form. So that the
recipient of the message can enter something into it.
> You could use a MsgBox statement to show a message box to the sender, but all the recipient will see is the sent message.
>
[quoted text clipped - 6 lines]
> > come up (only for the reciever, the sender does not see it). Is this
> > possible in Outlook 2003?
Sue Mosher [MVP-Outlook] - 23 Oct 2007 20:15 GMT
That's not going to work unless this is a form for internal use only and you have permission to publish forms to the Organizational Forms library. In that case, you can put a text box on a custom form page.

Signature
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54
>I need it to be a textbox that is attached on the form. So that the
> recipient of the message can enter something into it.
[quoted text clipped - 9 lines]
>> > come up (only for the reciever, the sender does not see it). Is this
>> > possible in Outlook 2003?
prog - 24 Oct 2007 14:27 GMT
Yes, it will be published in the org forms library.
> That's not going to work unless this is a form for internal use only and you have permission to publish forms to the Organizational Forms library. In that case, you can put a text box on a custom form page.
>
[quoted text clipped - 11 lines]
> >> > come up (only for the reciever, the sender does not see it). Is this
> >> > possible in Outlook 2003?
prog - 23 Oct 2007 20:18 GMT
Ok this is what I have so far once the custom send button is clicked. I
wanted to know if there is anyway that only the recipient can see the message
box on their side. (The message box is inside the frame per the code below
and the frame is initially set to visible=false)
Set k = myPage1.Controls("Frame9")
k.visible = true
> You could use a MsgBox statement to show a message box to the sender, but all the recipient will see is the sent message.
>
[quoted text clipped - 6 lines]
> > come up (only for the reciever, the sender does not see it). Is this
> > possible in Outlook 2003?
prog - 23 Oct 2007 20:22 GMT
Ok, so I just modified the READ Page and it seems to be doing what I want.
In the compose page I have it set to invisible and on the read page I have it
set to visible.
> Ok this is what I have so far once the custom send button is clicked. I
> wanted to know if there is anyway that only the recipient can see the message
[quoted text clipped - 14 lines]
> > > come up (only for the reciever, the sender does not see it). Is this
> > > possible in Outlook 2003?