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

Tags: , , ,

Checkbox enables Combobox enables textbox





 
 
Thread Tools Display Modes
  #1  
Old April 18th 07, 08:58 PM posted to microsoft.public.outlook.program_forms
ajatgp
external usenet poster
 
Posts: 3
Default Checkbox enables Combobox enables textbox

I'm creating a custom contact form, and I know I've done this before, I just
can't remember how. Here's what I need it to do, when my checkbox is True,
then it enables a combobox next to it to make choices, then if that's
selected a textbox enables. Going crazy!
Ads
  #2  
Old April 18th 07, 09:45 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,367
Default Checkbox enables Combobox enables textbox

Whether you use the CustomPropertyChange event or the control's Click event depends on whether the control is bound to an Outlook property. See http://www.outlookcode.com/d/propsyntax.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

"ajatgp" wrote in message ...
I'm creating a custom contact form, and I know I've done this before, I just
can't remember how. Here's what I need it to do, when my checkbox is True,
then it enables a combobox next to it to make choices, then if that's
selected a textbox enables. Going crazy!

  #3  
Old April 18th 07, 09:58 PM posted to microsoft.public.outlook.program_forms
ajatgp
external usenet poster
 
Posts: 3
Default Checkbox enables Combobox enables textbox

Everything is bound, I'm just not sure if they are bound the correct field.

"Sue Mosher [MVP-Outlook]" wrote:

Whether you use the CustomPropertyChange event or the control's Click event depends on whether the control is bound to an Outlook property. See http://www.outlookcode.com/d/propsyntax.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

"ajatgp" wrote in message ...
I'm creating a custom contact form, and I know I've done this before, I just
can't remember how. Here's what I need it to do, when my checkbox is True,
then it enables a combobox next to it to make choices, then if that's
selected a textbox enables. Going crazy!


  #4  
Old April 18th 07, 11:11 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,367
Default Checkbox enables Combobox enables textbox

Well, that should be easy enough to check, right?

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

"ajatgp" wrote in message ...
Everything is bound, I'm just not sure if they are bound the correct field.

"Sue Mosher [MVP-Outlook]" wrote:

Whether you use the CustomPropertyChange event or the control's Click event depends on whether the control is bound to an Outlook property. See http://www.outlookcode.com/d/propsyntax.htm

"ajatgp" wrote in message ...
I'm creating a custom contact form, and I know I've done this before, I just
can't remember how. Here's what I need it to do, when my checkbox is True,
then it enables a combobox next to it to make choices, then if that's
selected a textbox enables. Going crazy!


  #5  
Old April 23rd 07, 02:02 PM posted to microsoft.public.outlook.program_forms
ajatgp
external usenet poster
 
Posts: 3
Default Checkbox enables Combobox enables textbox

Yeah, you would think, but still working on this. I really thought I knew
what I was doing, but it's just not happening. Do I bind them to the same
field? They all work, but they are all active all the time, I want them to
become active only if the checkbox is checked.

"Sue Mosher [MVP-Outlook]" wrote:

Well, that should be easy enough to check, right?

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

"ajatgp" wrote in message ...
Everything is bound, I'm just not sure if they are bound the correct field.

"Sue Mosher [MVP-Outlook]" wrote:

Whether you use the CustomPropertyChange event or the control's Click event depends on whether the control is bound to an Outlook property. See http://www.outlookcode.com/d/propsyntax.htm

"ajatgp" wrote in message ...
I'm creating a custom contact form, and I know I've done this before, I just
can't remember how. Here's what I need it to do, when my checkbox is True,
then it enables a combobox next to it to make choices, then if that's
selected a textbox enables. Going crazy!


  #6  
Old April 30th 07, 06:43 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,367
Default Checkbox enables Combobox enables textbox

Each separate piece of information that you want OUtlook to store needs to have its own field.

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

"ajatgp" wrote in message ...
Yeah, you would think, but still working on this. I really thought I knew
what I was doing, but it's just not happening. Do I bind them to the same
field? They all work, but they are all active all the time, I want them to
become active only if the checkbox is checked.

"Sue Mosher [MVP-Outlook]" wrote:

Well, that should be easy enough to check, right?


"ajatgp" wrote in message ...
Everything is bound, I'm just not sure if they are bound the correct field.

"Sue Mosher [MVP-Outlook]" wrote:

Whether you use the CustomPropertyChange event or the control's Click event depends on whether the control is bound to an Outlook property. See http://www.outlookcode.com/d/propsyntax.htm

"ajatgp" wrote in message ...
I'm creating a custom contact form, and I know I've done this before, I just
can't remember how. Here's what I need it to do, when my checkbox is True,
then it enables a combobox next to it to make choices, then if that's
selected a textbox enables. Going crazy!


 




Thread Tools
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
save this password checkbox Mark B Outlook - Installation 0 February 22nd 07 08:21 PM
Checkbox valdiation formula Aggie G Outlook - Using Forms 1 November 9th 06 12:46 AM
Populating one textbox using another? Zer0 Outlook - General Queries 3 August 4th 06 06:57 PM
outlook checkbox merge adubb Outlook - Using Forms 1 May 27th 06 02:14 PM
if checkbox is checked then... andy Outlook - Using Forms 3 April 5th 06 09:45 PM


All times are GMT +1. The time now is 07:45 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2008 Outlook Banter, part of the NewsgroupBanter project.
The comments are property of their posters.
Loans - Premade MySpace Layouts - Online Loans - Dish Network - Vegas Hotel