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

Required fields on separate tabs



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old August 21st 06, 11:11 PM posted to microsoft.public.outlook.program_forms
jackie
external usenet poster
 
Posts: 29
Default Required fields on separate tabs

I have 4 tabs on a form.. There are some fields on the each tab that are
required but not all tabs are required to be completed.. what do I need to do
to enable the required fields on the tabs selected?

thanks for your help
jackie
  #2  
Old August 21st 06, 11:34 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Required fields on separate tabs

It's unclear why you would want to enable certain controls or under what conditions. What more can you tell us about your application?

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

"Jackie" wrote in message ...
I have 4 tabs on a form.. There are some fields on the each tab that are
required but not all tabs are required to be completed.. what do I need to do
to enable the required fields on the tabs selected?

thanks for your help
jackie

  #3  
Old August 23rd 06, 03:12 PM posted to microsoft.public.outlook.program_forms
jackie
external usenet poster
 
Posts: 29
Default Required fields on separate tabs

Sue,
The form is a request form.. There is a general tab for generic info and the
other tabs are situational, one for presales, one for delivery and one for
solutions support.. everything on the general tab is required, but the others
are situationally required.. I can only enable the required fields on the
general tab..If you require presales help, then you complete the presales
tab, if you require a delivery you complete the delivery tab, etc.. no one
will ever need to complete all of the tabs at one time..

I hope this makes sense..
thanks
jackie


"Sue Mosher [MVP-Outlook]" wrote:

It's unclear why you would want to enable certain controls or under what conditions. What more can you tell us about your application?

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

"Jackie" wrote in message ...
I have 4 tabs on a form.. There are some fields on the each tab that are
required but not all tabs are required to be completed.. what do I need to do
to enable the required fields on the tabs selected?

thanks for your help
jackie


  #4  
Old August 23rd 06, 03:32 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Required fields on separate tabs

You say you can only enable the firles on the general tab. What happens when you try to enable others? Show the relevant code snippet and point out which statement raises an error.

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

"Jackie" wrote in message ...
Sue,
The form is a request form.. There is a general tab for generic info and the
other tabs are situational, one for presales, one for delivery and one for
solutions support.. everything on the general tab is required, but the others
are situationally required.. I can only enable the required fields on the
general tab..If you require presales help, then you complete the presales
tab, if you require a delivery you complete the delivery tab, etc.. no one
will ever need to complete all of the tabs at one time..

I hope this makes sense..
thanks
jackie


"Sue Mosher [MVP-Outlook]" wrote:

It's unclear why you would want to enable certain controls or under what conditions. What more can you tell us about your application?



"Jackie" wrote in message ...
I have 4 tabs on a form.. There are some fields on the each tab that are
required but not all tabs are required to be completed.. what do I need to do
to enable the required fields on the tabs selected?

thanks for your help
jackie


  #5  
Old August 25th 06, 04:58 PM posted to microsoft.public.outlook.program_forms
jackie
external usenet poster
 
Posts: 29
Default Required fields on separate tabs

Sue,
I get the following error message:
A field on this form requires a value..

I do not have any code behind it except making the fields required. I am not
an outlook programmer, so I thought there might be an simple piece of code I
can put behind each tab.

thanks
jackie

"Sue Mosher [MVP-Outlook]" wrote:

You say you can only enable the firles on the general tab. What happens when you try to enable others? Show the relevant code snippet and point out which statement raises an error.

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

"Jackie" wrote in message ...
Sue,
The form is a request form.. There is a general tab for generic info and the
other tabs are situational, one for presales, one for delivery and one for
solutions support.. everything on the general tab is required, but the others
are situationally required.. I can only enable the required fields on the
general tab..If you require presales help, then you complete the presales
tab, if you require a delivery you complete the delivery tab, etc.. no one
will ever need to complete all of the tabs at one time..

I hope this makes sense..
thanks
jackie


"Sue Mosher [MVP-Outlook]" wrote:

It's unclear why you would want to enable certain controls or under what conditions. What more can you tell us about your application?



"Jackie" wrote in message ...
I have 4 tabs on a form.. There are some fields on the each tab that are
required but not all tabs are required to be completed.. what do I need to do
to enable the required fields on the tabs selected?

thanks for your help
jackie


  #6  
Old August 27th 06, 02:51 AM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Required fields on separate tabs

There is no code behind individual tabs. Code runs for the entire form. The symptoms suggest that you have used the Validation tab on some control's Properties dialog to make that control's field mandatory. Using the simple validation check box isn't recommended. The better approach is to use a validation formula and validation message for each control whose field you want to require.

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

"Jackie" wrote in message ...
Sue,
I get the following error message:
A field on this form requires a value..

I do not have any code behind it except making the fields required. I am not
an outlook programmer, so I thought there might be an simple piece of code I
can put behind each tab.

thanks
jackie

"Sue Mosher [MVP-Outlook]" wrote:

You say you can only enable the firles on the general tab. What happens when you try to enable others? Show the relevant code snippet and point out which statement raises an error.



"Jackie" wrote in message ...
Sue,
The form is a request form.. There is a general tab for generic info and the
other tabs are situational, one for presales, one for delivery and one for
solutions support.. everything on the general tab is required, but the others
are situationally required.. I can only enable the required fields on the
general tab..If you require presales help, then you complete the presales
tab, if you require a delivery you complete the delivery tab, etc.. no one
will ever need to complete all of the tabs at one time..

I hope this makes sense..
thanks
jackie


"Sue Mosher [MVP-Outlook]" wrote:

It's unclear why you would want to enable certain controls or under what conditions. What more can you tell us about your application?



"Jackie" wrote in message ...
I have 4 tabs on a form.. There are some fields on the each tab that are
required but not all tabs are required to be completed.. what do I need to do
to enable the required fields on the tabs selected?

thanks for your help
jackie


 




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 do I rename the tabs in a custom contact form Stefon Outlook - Using Contacts 1 May 24th 06 05:09 PM
rename tabs in the contact form Stefon Outlook - Using Forms 2 May 19th 06 10:09 PM
Creating Dropdown List, Required Fields, Export Contacts to new Fo CC Outlook - Using Contacts 1 February 28th 06 08:28 PM
Email account tabs options disappear Bob Outlook - General Queries 0 January 30th 06 05:03 PM
Can you make fields in Outlook forms "required"? Miss Julie Outlook - Calandaring 1 January 19th 06 05:30 PM


All times are GMT +1. The time now is 05:59 AM.


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.