A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook - Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Custom Form installation



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old November 4th 09, 12:46 PM posted to microsoft.public.outlook.program_forms
Aditi
external usenet poster
 
Posts: 10
Default Custom Form installation

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


Ads
  #2  
Old November 4th 09, 02:06 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP][_4_]
external usenet poster
 
Posts: 552
Default Custom Form installation

Take a look at the information he

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" wrote in message
...
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




  #3  
Old November 5th 09, 09:08 PM posted to microsoft.public.outlook.program_forms
Aditi
external usenet poster
 
Posts: 10
Default Custom Form installation

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 he

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" wrote in message
...
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




.

  #4  
Old November 5th 09, 09:10 PM posted to microsoft.public.outlook.program_forms
Aditi
external usenet poster
 
Posts: 10
Default Custom Form installation

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 he

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" wrote in message
...
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




.

  #5  
Old November 7th 09, 12:22 AM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP][_4_]
external usenet poster
 
Posts: 552
Default Custom Form installation

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" wrote in message
...
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 he

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" wrote in message
...
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.



 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Outlook Key and Custom Installation Wizard DMc2007 Outlook - Installation 2 February 4th 09 12:51 PM
Outlook Custom Form Installation Error [email protected] Outlook - General Queries 0 October 18th 07 08:38 PM
Custom Installation Package DG Outlook and VBA 1 August 2nd 07 02:50 PM
Custom Installation Wizard Peter Outlook - General Queries 3 June 9th 07 08:01 PM
Custom Installation Wizard AJ Outlook - General Queries 15 March 26th 07 12:11 PM


All times are GMT +1. The time now is 01:14 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright 2004-2025 Outlook Banter.
The comments are property of their posters.