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

Outlook form-texbox field



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old May 29th 06, 11:01 PM posted to microsoft.public.outlook.program_forms
BD
external usenet poster
 
Posts: 12
Default Outlook form-texbox field

I have created an outlook form with a tab that acts as a checklist to let the
reciever of the form know what has been sent using the form. The form
contains a few check boxes to indicate these are the documents that are sent
and a text box next to each where the user can type in the name of the file.
The problem I am having is that I can check the boxes and write stuff in the
text box, but when the form is sent the reciever doesnt see anything checked,
nor does he/she see anything written in the text box. I am guessing the boxes
arent enabled. Could someone please help me with what properties i need to
change to get this to work. Thanks a lot


  #2  
Old May 29th 06, 11:20 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Outlook form-texbox field

Sounds like you have not told Outlook what properties to use to write and read the data that the user is entering. Do this on the Properties dialog of each control, at the top of the Value tab, adding new fields as needed.

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

"BD" wrote in message ...
I have created an outlook form with a tab that acts as a checklist to let the
reciever of the form know what has been sent using the form. The form
contains a few check boxes to indicate these are the documents that are sent
and a text box next to each where the user can type in the name of the file.
The problem I am having is that I can check the boxes and write stuff in the
text box, but when the form is sent the reciever doesnt see anything checked,
nor does he/she see anything written in the text box. I am guessing the boxes
arent enabled. Could someone please help me with what properties i need to
change to get this to work. Thanks a lot


  #3  
Old May 30th 06, 03:48 AM posted to microsoft.public.outlook.program_forms
BD
external usenet poster
 
Posts: 12
Default Outlook form-texbox field

Yes, you were definitely right about that one. Well the text boxes and
cheklist works now, theres is one other thing I would like to do:

The form asks if all required documents are submitted and provides Yes and
No check boxes for the user to fill. The way it is set up right now is that
the user can accidentally or intentionally check both boxes. I would like the
user to be able to only check one of the boxes, either Yes or No. Any
suggestions on how I could do this? Thanks a lot for all your help. I really
appreciate it

"Sue Mosher [MVP-Outlook]" wrote:

Sounds like you have not told Outlook what properties to use to write and read the data that the user is entering. Do this on the Properties dialog of each control, at the top of the Value tab, adding new fields as needed.

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

"BD" wrote in message ...
I have created an outlook form with a tab that acts as a checklist to let the
reciever of the form know what has been sent using the form. The form
contains a few check boxes to indicate these are the documents that are sent
and a text box next to each where the user can type in the name of the file.
The problem I am having is that I can check the boxes and write stuff in the
text box, but when the form is sent the reciever doesnt see anything checked,
nor does he/she see anything written in the text box. I am guessing the boxes
arent enabled. Could someone please help me with what properties i need to
change to get this to work. Thanks a lot



  #4  
Old May 30th 06, 04:00 AM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Outlook form-texbox field

Use options buttons instead of check boxes; see http://www.outlookcode.com/d/formcontrols.htm

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

"BD" wrote in message ...

The form asks if all required documents are submitted and provides Yes and
No check boxes for the user to fill. The way it is set up right now is that
the user can accidentally or intentionally check both boxes. I would like the
user to be able to only check one of the boxes, either Yes or No. Any
suggestions on how I could do this?

  #5  
Old May 30th 06, 05:12 PM posted to microsoft.public.outlook.program_forms
BD
external usenet poster
 
Posts: 12
Default Outlook form-texbox field

That worked, is it possible to have a message pop up if the user chose "NO"
for the option button. For example, if the question asked if all documents
were submitted and the user said NO, then a message would pop up saying
"submission with missing document will not be processed"

Thanks

"Sue Mosher [MVP-Outlook]" wrote:

Use options buttons instead of check boxes; see http://www.outlookcode.com/d/formcontrols.htm

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

"BD" wrote in message ...

The form asks if all required documents are submitted and provides Yes and
No check boxes for the user to fill. The way it is set up right now is that
the user can accidentally or intentionally check both boxes. I would like the
user to be able to only check one of the boxes, either Yes or No. Any
suggestions on how I could do this?


  #6  
Old May 30th 06, 05:34 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Outlook form-texbox field

Yes, you can put code in the form's Item_Send or Item_Write event handler to perform such validation. See http://www.outlookcode.com/d/propsyntax.htm for a primer on Outlook property syntax.

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

"BD" wrote in message news
That worked, is it possible to have a message pop up if the user chose "NO"
for the option button. For example, if the question asked if all documents
were submitted and the user said NO, then a message would pop up saying
"submission with missing document will not be processed"

Thanks

"Sue Mosher [MVP-Outlook]" wrote:

Use options buttons instead of check boxes; see http://www.outlookcode.com/d/formcontrols.htm


"BD" wrote in message ...

The form asks if all required documents are submitted and provides Yes and
No check boxes for the user to fill. The way it is set up right now is that
the user can accidentally or intentionally check both boxes. I would like the
user to be able to only check one of the boxes, either Yes or No. Any
suggestions on how I could do this?


 




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
EMAIL field on Custom Outlook Form Michael Anderson Outlook - Using Forms 1 April 20th 06 01:30 PM
how i create combination field in outlook form? regards, A.s Outlook - Using Forms 1 April 18th 06 02:02 PM
Export one form field R Fourt Outlook - Using Forms 3 February 27th 06 06:32 PM
Change messageBox text when Outlook form field not validated JennD Outlook - Using Forms 0 February 23rd 06 09:17 PM
Populate Company field from Contact field in custom task form Sue Mosher [MVP-Outlook] Outlook - Using Forms 0 January 20th 06 08:37 PM


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