PC Review


Reply
Thread Tools Rating: Thread Rating: 1 votes, 1.00 average.

Custom Form installation

 
 
Aditi
Guest
Posts: n/a
 
      4th Nov 2009
Hi
I have created Custom Form(.oft) in Outlook 2003.I want to install this form
in Client machine and set this as default one using a installer...

Please help me to integrate the form to installer or suggest some work
around f or the same.


Thanks
Aditi


 
Reply With Quote
 
 
 
 
Sue Mosher [MVP]
Guest
Posts: n/a
 
      4th Nov 2009
Take a look at the information here:

http://www.outlookcode.com/article.aspx?id=27
http://www.outlookcode.com/article.aspx?ID=39

If you have questions, post back with more detailed information about your
mail environment, the type of form, and its purpose.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Aditi" <(E-Mail Removed)> wrote in message
news:B2B3CC20-6C03-4F31-8B5E-(E-Mail Removed)...
> Hi
> I have created Custom Form(.oft) in Outlook 2003.I want to install this
> form
> in Client machine and set this as default one using a installer...
>
> Please help me to integrate the form to installer or suggest some work
> around f or the same.
>
>
> Thanks
> Aditi
>
>



 
Reply With Quote
 
Aditi
Guest
Posts: n/a
 
      5th Nov 2009
Hi Sue,

Thank you for the response..

At last all research planned to go for Vbs script and will execute the
script after the installation .
For that started writing a Vbs script that will use redemption ,but got
stuck in setting the field values for the Calendar folder
Its throwing following error Objects Required:’[string: “IPM.Appointment”]’

Please see the following code for reference

Dim objApp
Const PR_DEF_POST_MSGCLASS = &H36E5001E
Const PR_DEF_POST_DISPLAYNAME = &H36E6001E
Set objApp = CreateObject("Outlook.Application")
Dim Inbox
set Session = CreateObject("emhelper.mRDOSession")
Session.Logon
set olFldr =Session.GetDefaultFolder(9)
Set fld1 = olFldr.Fields(PR_DEF_POST_MSGCLASS)
fld1.Value ="IPM.Appointment.WsmOutlook2003 Form"
set k =fld1.Value
fld1.Value="IPM.Appointment.WsmOutlook2003 Form"

It looks like some conversion issue. Kindly Let me know your views and
suggestions


Thanks
Aditi


"Sue Mosher [MVP]" wrote:

> Take a look at the information here:
>
> http://www.outlookcode.com/article.aspx?id=27
> http://www.outlookcode.com/article.aspx?ID=39
>
> If you have questions, post back with more detailed information about your
> mail environment, the type of form, and its purpose.
> --
> Sue Mosher, Outlook MVP
> Author of Microsoft Outlook 2007 Programming:
> Jumpstart for Power Users and Administrators
> http://www.outlookcode.com/article.aspx?id=54
>
>
> "Aditi" <(E-Mail Removed)> wrote in message
> news:B2B3CC20-6C03-4F31-8B5E-(E-Mail Removed)...
> > Hi
> > I have created Custom Form(.oft) in Outlook 2003.I want to install this
> > form
> > in Client machine and set this as default one using a installer...
> >
> > Please help me to integrate the form to installer or suggest some work
> > around f or the same.
> >
> >
> > Thanks
> > Aditi
> >
> >

>
>
> .
>

 
Reply With Quote
 
Aditi
Guest
Posts: n/a
 
      5th Nov 2009
Hi Sue,

Thank you for the response..

At last all research planned to go for Vbs script and will execute the
script after the installation .
For that started writing a Vbs script that will use redemption ,but got
stuck in setting the field values for the Calendar folder
Its throwing following error Objects Required:’[string: “IPM.Appointment”]’

Please see the following code for reference

Dim objApp
Const PR_DEF_POST_MSGCLASS = &H36E5001E
Const PR_DEF_POST_DISPLAYNAME = &H36E6001E
Set objApp = CreateObject("Outlook.Application")
Dim Inbox
set Session = CreateObject("emhelper.mRDOSession")
Session.Logon
set olFldr =Session.GetDefaultFolder(9)
Set fld1 = olFldr.Fields(PR_DEF_POST_MSGCLASS)
fld1.Value ="IPM.Appointment.WsmOutlook2003 Form"
set k =fld1.Value
fld1.Value="IPM.Appointment.WsmOutlook2003 Form"

It looks like some conversion issue. Kindly Let me know your views and
suggestions


Thanks
Aditi


"Sue Mosher [MVP]" wrote:

> Take a look at the information here:
>
> http://www.outlookcode.com/article.aspx?id=27
> http://www.outlookcode.com/article.aspx?ID=39
>
> If you have questions, post back with more detailed information about your
> mail environment, the type of form, and its purpose.
> --
> Sue Mosher, Outlook MVP
> Author of Microsoft Outlook 2007 Programming:
> Jumpstart for Power Users and Administrators
> http://www.outlookcode.com/article.aspx?id=54
>
>
> "Aditi" <(E-Mail Removed)> wrote in message
> news:B2B3CC20-6C03-4F31-8B5E-(E-Mail Removed)...
> > Hi
> > I have created Custom Form(.oft) in Outlook 2003.I want to install this
> > form
> > in Client machine and set this as default one using a installer...
> >
> > Please help me to integrate the form to installer or suggest some work
> > around f or the same.
> >
> >
> > Thanks
> > Aditi
> >
> >

>
>
> .
>

 
Reply With Quote
 
Sue Mosher [MVP]
Guest
Posts: n/a
 
      6th Nov 2009
Which statement raises the error? Keep in mind that we have no way of
knowing what your emhelper.mRDOSession does.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Aditi" <(E-Mail Removed)> wrote in message
news:43215241-7B93-4AB1-A57C-(E-Mail Removed)...
> Hi Sue,
>
> Thank you for the response..
>
> At last all research planned to go for Vbs script and will execute the
> script after the installation .
> For that started writing a Vbs script that will use redemption ,but got
> stuck in setting the field values for the Calendar folder
> Its throwing following error Objects Required:'[string:
> "IPM.Appointment"]'
>
> Please see the following code for reference
>
> Dim objApp
> Const PR_DEF_POST_MSGCLASS = &H36E5001E
> Const PR_DEF_POST_DISPLAYNAME = &H36E6001E
> Set objApp = CreateObject("Outlook.Application")
> Dim Inbox
> set Session = CreateObject("emhelper.mRDOSession")
> Session.Logon
> set olFldr =Session.GetDefaultFolder(9)
> Set fld1 = olFldr.Fields(PR_DEF_POST_MSGCLASS)
> fld1.Value ="IPM.Appointment.WsmOutlook2003 Form"
> set k =fld1.Value
> fld1.Value="IPM.Appointment.WsmOutlook2003 Form"
>
> It looks like some conversion issue. Kindly Let me know your views and
> suggestions


> "Sue Mosher [MVP]" wrote:
>
>> Take a look at the information here:
>>
>> http://www.outlookcode.com/article.aspx?id=27
>> http://www.outlookcode.com/article.aspx?ID=39
>>
>> If you have questions, post back with more detailed information about
>> your
>> mail environment, the type of form, and its purpose.


>>
>> "Aditi" <(E-Mail Removed)> wrote in message
>> news:B2B3CC20-6C03-4F31-8B5E-(E-Mail Removed)...
>> > Hi
>> > I have created Custom Form(.oft) in Outlook 2003.I want to install this
>> > form
>> > in Client machine and set this as default one using a installer...
>> >
>> > Please help me to integrate the form to installer or suggest some work
>> > around f or the same.



 
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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Outlook Custom Form Installation Error pcgeek86@gmail.com Microsoft Outlook 0 18th Oct 2007 07:38 PM
Emailing a contact vCard with custom form loses all custom info =?Utf-8?B?S2lt?= Microsoft Outlook Contacts 7 27th Apr 2006 12:21 AM
custom message form recieved without custom fields - outlook 2000 motiv8d Microsoft Outlook Form Programming 0 5th Mar 2004 01:00 AM
Mini Problem: A custom mail-form create a custom task-form Christoph Sbach Microsoft Outlook Form Programming 4 5th Nov 2003 04:31 PM
Installation problems - custom form doesn't follow the data Kristian Microsoft Outlook Form Programming 6 17th Oct 2003 09:56 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 09:18 PM.