PC Review Forums Newsgroups Microsoft Outlook Microsoft Outlook Form Programming Custom Form Receipt Errors

Reply

Custom Form Receipt Errors

 
Thread Tools Rate Thread
Old 06-06-2005, 10:39 PM   #1
Jesslyn Hendrix
Guest
 
Posts: n/a
Default Custom Form Receipt Errors


I have a few custom forms that have been working fine in our enterprise on
Outlook XP. THey were all re-published to the Organizational Library using
Outlook 2003 when we upgraded Outlook, but now the code does not seem to be
executing after the form has been sent. We are running Outlook 2003 SP1,
Office XP SP3. Any suggestions? Is there a problem with custom forms now
that they want you to use InfoPath? I plan on implementing the remainder of
Office 2003 later this year, but for now I really need to fix this issue.


  Reply With Quote
Old 07-06-2005, 03:55 AM   #2
Sue Mosher [MVP-Outlook]
Guest
 
Posts: n/a
Default Re: Custom Form Receipt Errors

Tell us more about whta kind of forms these are and how they're used -- particularly where the data items are stored.

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"Jesslyn Hendrix" <jhendrix@omm.com> wrote in message news:%236wfbftaFHA.2180@TK2MSFTNGP12.phx.gbl...
>I have a few custom forms that have been working fine in our enterprise on
> Outlook XP. THey were all re-published to the Organizational Library using
> Outlook 2003 when we upgraded Outlook, but now the code does not seem to be
> executing after the form has been sent. We are running Outlook 2003 SP1,
> Office XP SP3. Any suggestions? Is there a problem with custom forms now
> that they want you to use InfoPath? I plan on implementing the remainder of
> Office 2003 later this year, but for now I really need to fix this issue.
>
>

  Reply With Quote
Old 07-06-2005, 06:35 PM   #3
Jesslyn Hendrix
Guest
 
Posts: n/a
Default Re: Custom Form Receipt Errors

The form looks for a database on a network drive and pulls the recipient
from there. There is no problem with any of the code when the user creates
and sends the form. When the recipient opens the form, it is supposed to
check to see if the form is sent

if oitem.sent = true then...

However, the code in the Open Event is NOT running when the recipient gets
the form and opens it. I have combined the Compose & Read pages and
manipulate the functionality of the form by using the above statement.



"Sue Mosher [MVP-Outlook]" <suemvp@outlookcode.com> wrote in message
news:OcPXyTwaFHA.3620@TK2MSFTNGP09.phx.gbl...
Tell us more about whta kind of forms these are and how they're used --
particularly where the data items are stored.

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"Jesslyn Hendrix" <jhendrix@omm.com> wrote in message
news:%236wfbftaFHA.2180@TK2MSFTNGP12.phx.gbl...
>I have a few custom forms that have been working fine in our enterprise on
> Outlook XP. THey were all re-published to the Organizational Library

using
> Outlook 2003 when we upgraded Outlook, but now the code does not seem to

be
> executing after the form has been sent. We are running Outlook 2003 SP1,
> Office XP SP3. Any suggestions? Is there a problem with custom forms now
> that they want you to use InfoPath? I plan on implementing the remainder

of
> Office 2003 later this year, but for now I really need to fix this issue.
>
>



  Reply With Quote
Old 07-06-2005, 11:24 PM   #4
Sue Mosher [MVP-Outlook]
Guest
 
Posts: n/a
Default Re: Custom Form Receipt Errors

Where is the form published?

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"Jesslyn Hendrix" <jhendrix@omm.com> wrote in message news:OHpOb73aFHA.2968@TK2MSFTNGP10.phx.gbl...
> The form looks for a database on a network drive and pulls the recipient
> from there. There is no problem with any of the code when the user creates
> and sends the form. When the recipient opens the form, it is supposed to
> check to see if the form is sent
>
> if oitem.sent = true then...
>
> However, the code in the Open Event is NOT running when the recipient gets
> the form and opens it. I have combined the Compose & Read pages and
> manipulate the functionality of the form by using the above statement.
>
>
>
> "Sue Mosher [MVP-Outlook]" <suemvp@outlookcode.com> wrote in message
> news:OcPXyTwaFHA.3620@TK2MSFTNGP09.phx.gbl...
> Tell us more about whta kind of forms these are and how they're used --
> particularly where the data items are stored.
>
> --
> Sue Mosher, Outlook MVP
> Author of
> Microsoft Outlook Programming - Jumpstart for
> Administrators, Power Users, and Developers
> http://www.outlookcode.com/jumpstart.aspx
>
>
> "Jesslyn Hendrix" <jhendrix@omm.com> wrote in message
> news:%236wfbftaFHA.2180@TK2MSFTNGP12.phx.gbl...
>>I have a few custom forms that have been working fine in our enterprise on
>> Outlook XP. THey were all re-published to the Organizational Library

> using
>> Outlook 2003 when we upgraded Outlook, but now the code does not seem to

> be
>> executing after the form has been sent. We are running Outlook 2003 SP1,
>> Office XP SP3. Any suggestions? Is there a problem with custom forms now
>> that they want you to use InfoPath? I plan on implementing the remainder

> of
>> Office 2003 later this year, but for now I really need to fix this issue.
>>
>>

>
>

  Reply With Quote
Old 08-06-2005, 03:06 AM   #5
Jesslyn Hendrix
Guest
 
Posts: n/a
Default Re: Custom Form Receipt Errors

Organizational Library in Exchange

"Sue Mosher [MVP-Outlook]" <suemvp@outlookcode.com> wrote in message
news:eyaG456aFHA.584@TK2MSFTNGP15.phx.gbl...
Where is the form published?

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"Jesslyn Hendrix" <jhendrix@omm.com> wrote in message
news:OHpOb73aFHA.2968@TK2MSFTNGP10.phx.gbl...
> The form looks for a database on a network drive and pulls the recipient
> from there. There is no problem with any of the code when the user
> creates
> and sends the form. When the recipient opens the form, it is supposed to
> check to see if the form is sent
>
> if oitem.sent = true then...
>
> However, the code in the Open Event is NOT running when the recipient gets
> the form and opens it. I have combined the Compose & Read pages and
> manipulate the functionality of the form by using the above statement.
>
>
>
> "Sue Mosher [MVP-Outlook]" <suemvp@outlookcode.com> wrote in message
> news:OcPXyTwaFHA.3620@TK2MSFTNGP09.phx.gbl...
> Tell us more about whta kind of forms these are and how they're used --
> particularly where the data items are stored.
>
> --
> Sue Mosher, Outlook MVP
> Author of
> Microsoft Outlook Programming - Jumpstart for
> Administrators, Power Users, and Developers
> http://www.outlookcode.com/jumpstart.aspx
>
>
> "Jesslyn Hendrix" <jhendrix@omm.com> wrote in message
> news:%236wfbftaFHA.2180@TK2MSFTNGP12.phx.gbl...
>>I have a few custom forms that have been working fine in our enterprise on
>> Outlook XP. THey were all re-published to the Organizational Library

> using
>> Outlook 2003 when we upgraded Outlook, but now the code does not seem to

> be
>> executing after the form has been sent. We are running Outlook 2003 SP1,
>> Office XP SP3. Any suggestions? Is there a problem with custom forms
>> now
>> that they want you to use InfoPath? I plan on implementing the remainder

> of
>> Office 2003 later this year, but for now I really need to fix this issue.
>>
>>

>
>



  Reply With Quote
Old 08-06-2005, 04:42 AM   #6
Sue Mosher [MVP-Outlook]
Guest
 
Posts: n/a
Default Re: Custom Form Receipt Errors

What about the state of the Send Form Definition with Item box on the (Properties) page? It should not be checked.

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"Jesslyn Hendrix" <jhendrix@omm.com> wrote in message news:%23SvhTZ8aFHA.3840@tk2msftngp13.phx.gbl...
> Organizational Library in Exchange
>
> "Sue Mosher [MVP-Outlook]" <suemvp@outlookcode.com> wrote in message
> news:eyaG456aFHA.584@TK2MSFTNGP15.phx.gbl...
> Where is the form published?


>
> "Jesslyn Hendrix" <jhendrix@omm.com> wrote in message
> news:OHpOb73aFHA.2968@TK2MSFTNGP10.phx.gbl...
>> The form looks for a database on a network drive and pulls the recipient
>> from there. There is no problem with any of the code when the user
>> creates
>> and sends the form. When the recipient opens the form, it is supposed to
>> check to see if the form is sent
>>
>> if oitem.sent = true then...
>>
>> However, the code in the Open Event is NOT running when the recipient gets
>> the form and opens it. I have combined the Compose & Read pages and
>> manipulate the functionality of the form by using the above statement.
>>
>>
>>
>> "Sue Mosher [MVP-Outlook]" <suemvp@outlookcode.com> wrote in message
>> news:OcPXyTwaFHA.3620@TK2MSFTNGP09.phx.gbl...
>> Tell us more about whta kind of forms these are and how they're used --
>> particularly where the data items are stored.
>>
>> --
>> Sue Mosher, Outlook MVP
>> Author of
>> Microsoft Outlook Programming - Jumpstart for
>> Administrators, Power Users, and Developers
>> http://www.outlookcode.com/jumpstart.aspx
>>
>>
>> "Jesslyn Hendrix" <jhendrix@omm.com> wrote in message
>> news:%236wfbftaFHA.2180@TK2MSFTNGP12.phx.gbl...
>>>I have a few custom forms that have been working fine in our enterprise on
>>> Outlook XP. THey were all re-published to the Organizational Library

>> using
>>> Outlook 2003 when we upgraded Outlook, but now the code does not seem to

>> be
>>> executing after the form has been sent. We are running Outlook 2003 SP1,
>>> Office XP SP3. Any suggestions? Is there a problem with custom forms
>>> now
>>> that they want you to use InfoPath? I plan on implementing the remainder

>> of
>>> Office 2003 later this year, but for now I really need to fix this issue.
>>>
>>>

>>
>>

>
>

  Reply With Quote
Reply



Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off