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 - read-only fields



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old June 11th 08, 04:41 PM posted to microsoft.public.outlook.program_forms
Studer
external usenet poster
 
Posts: 3
Default Custom Form - read-only fields

Hello,
I’m developing a custom Outlook 2003 form in my enterprise for requesting a
certain service to be made. One user will request the service by filling up
certain fields of a form and a 2nd user will receive this request a reply to
it, filling up other fields, saying if it’s possible to be done, by what
date, etc.

The problem I have is that when the 2nd user replies, he’s able to change
the values inserted by the firs user, and I don’t what that to happen. How
can I prevent this from happening?

I’m using a message. I’ve tried with a task, but the problem remains.
Thank you for your help.

Studer

Ads
  #2  
Old June 11th 08, 05:32 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Custom Form - read-only fields

You could put code in the Item_Reply event handler to set certain controls on the reply message to be read-only. See http://www.outlookcode.com/article.aspx?ID=38 if you need information on how to work with controls in your code.

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Studer" wrote in message ...
Hello,
I’m developing a custom Outlook 2003 form in my enterprise for requesting a
certain service to be made. One user will request the service by filling up
certain fields of a form and a 2nd user will receive this request a reply to
it, filling up other fields, saying if it’s possible to be done, by what
date, etc.

The problem I have is that when the 2nd user replies, he’s able to change
the values inserted by the firs user, and I don’t what that to happen. How
can I prevent this from happening?

I’m using a message. I’ve tried with a task, but the problem remains.
Thank you for your help.

Studer

  #3  
Old June 11th 08, 06:43 PM posted to microsoft.public.outlook.program_forms
Studer
external usenet poster
 
Posts: 3
Default Custom Form - read-only fields

No way of doing this without VBA code, that's what you are saying Sue, right?
Now I'm in trouble...

Thank you very much.

Studer

"Sue Mosher [MVP-Outlook]" wrote:

You could put code in the Item_Reply event handler to set certain controls on the reply message to be read-only. See http://www.outlookcode.com/article.aspx?ID=38 if you need information on how to work with controls in your code.

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Studer" wrote in message ...
Hello,
I’m developing a custom Outlook 2003 form in my enterprise for requesting a
certain service to be made. One user will request the service by filling up
certain fields of a form and a 2nd user will receive this request a reply to
it, filling up other fields, saying if it’s possible to be done, by what
date, etc.

The problem I have is that when the 2nd user replies, he’s able to change
the values inserted by the firs user, and I don’t what that to happen. How
can I prevent this from happening?

I’m using a message. I’ve tried with a task, but the problem remains.
Thank you for your help.

Studer


  #4  
Old June 11th 08, 06:49 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Custom Form - read-only fields

VBA would be way more complicated that what I suggested, which is using VBScript code behind the form.

Another approach would be to use multiple forms, each for a different step in the process, with different controls set as read-only. That might be a nightmare to maintain and update.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Studer" wrote in message ...
No way of doing this without VBA code, that's what you are saying Sue, right?
Now I'm in trouble...

Thank you very much.

Studer

"Sue Mosher [MVP-Outlook]" wrote:

You could put code in the Item_Reply event handler to set certain controls on the reply message to be read-only. See http://www.outlookcode.com/article.aspx?ID=38 if you need information on how to work with controls in your code.

"Studer" wrote in message ...
Hello,
I’m developing a custom Outlook 2003 form in my enterprise for requesting a
certain service to be made. One user will request the service by filling up
certain fields of a form and a 2nd user will receive this request a reply to
it, filling up other fields, saying if it’s possible to be done, by what
date, etc.

The problem I have is that when the 2nd user replies, he’s able to change
the values inserted by the firs user, and I don’t what that to happen. How
can I prevent this from happening?

I’m using a message. I’ve tried with a task, but the problem remains.
Thank you for your help.

Studer


  #5  
Old June 12th 08, 11:31 AM posted to microsoft.public.outlook.program_forms
Studer
external usenet poster
 
Posts: 3
Default Custom Form - read-only fields

Multiple forms and "Read only" attribute Is the way for me! I took me only 10
min to put it all in shape and working perfectly.

It's a very simple form, so no updates needed for a looong time.

Thank you very very much Sue!

"Sue Mosher [MVP-Outlook]" wrote:

VBA would be way more complicated that what I suggested, which is using VBScript code behind the form.

Another approach would be to use multiple forms, each for a different step in the process, with different controls set as read-only. That might be a nightmare to maintain and update.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Studer" wrote in message ...
No way of doing this without VBA code, that's what you are saying Sue, right?
Now I'm in trouble...

Thank you very much.

Studer

"Sue Mosher [MVP-Outlook]" wrote:

You could put code in the Item_Reply event handler to set certain controls on the reply message to be read-only. See http://www.outlookcode.com/article.aspx?ID=38 if you need information on how to work with controls in your code.

"Studer" wrote in message ...
Hello,
I’m developing a custom Outlook 2003 form in my enterprise for requesting a
certain service to be made. One user will request the service by filling up
certain fields of a form and a 2nd user will receive this request a reply to
it, filling up other fields, saying if it’s possible to be done, by what
date, etc.

The problem I have is that when the 2nd user replies, he’s able to change
the values inserted by the firs user, and I don’t what that to happen. How
can I prevent this from happening?

I’m using a message. I’ve tried with a task, but the problem remains.
Thank you for your help.

Studer



 




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
How to move fields in custom form to "user-defined fields in folde austex Outlook - Using Contacts 0 January 10th 08 12:51 AM
Custom Actions and Form Fields dch3 Outlook - Using Forms 3 August 2nd 07 09:15 PM
Question on Custom Form and Protected Fields John Lane Outlook - Using Forms 1 April 27th 07 04:16 PM
importing custom fields into a custom form susan lasalle Outlook - Using Contacts 1 January 16th 07 10:01 PM
Fields get created in folder, not in custom form kkarre Outlook - Using Forms 2 February 2nd 06 09:56 PM


All times are GMT +1. The time now is 01:12 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.