A Microsoft Office (Excel, Word) forum. OfficeFrustration

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 » OfficeFrustration forum » Microsoft Access » Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Conditional formatting changes field enabled property?



 
 
Thread Tools Display Modes
  #1  
Old March 15th, 2006, 05:26 PM posted to microsoft.public.access.forms
external usenet poster
 
Posts: n/a
Default Conditional formatting changes field enabled property?

I have a subform control with continuous forms as its default view. I have
the fields on the subform set to .Enabled = False and .Locked = True as I
want to be able to scroll up and down the records but not to be able to
change any data. The records where the conditional formatting conditions
apply appear to have the .Enabled property set to True allowing the cursor to
enter the field.
Does anyone know about this problem?
  #2  
Old March 15th, 2006, 09:11 PM posted to microsoft.public.access.forms
external usenet poster
 
Posts: n/a
Default Conditional formatting changes field enabled property?

Richard,

In addition to font, type weight, background color, etc., you can also set
the Enabled property for records meeting the specified condition, which
overrides the Enabled status set in form view.

Open the form in form view, click on the control, select Format, Conditional
Formatting, and click the Enabled button at the far right to disable.

Hope that helps.
Sprinks


"Richard Corner" wrote:

I have a subform control with continuous forms as its default view. I have
the fields on the subform set to .Enabled = False and .Locked = True as I
want to be able to scroll up and down the records but not to be able to
change any data. The records where the conditional formatting conditions
apply appear to have the .Enabled property set to True allowing the cursor to
enter the field.
Does anyone know about this problem?

  #3  
Old March 15th, 2006, 09:16 PM posted to microsoft.public.access.forms
external usenet poster
 
Posts: n/a
Default Conditional formatting changes field enabled property?

Check if yu have any cde on the on current event of the form that might set
the property of the field to enabled = yes

--
\\// Live Long and Prosper \\//
BS"D


"Richard Corner" wrote:

I have a subform control with continuous forms as its default view. I have
the fields on the subform set to .Enabled = False and .Locked = True as I
want to be able to scroll up and down the records but not to be able to
change any data. The records where the conditional formatting conditions
apply appear to have the .Enabled property set to True allowing the cursor to
enter the field.
Does anyone know about this problem?

  #4  
Old March 15th, 2006, 09:25 PM posted to microsoft.public.access.forms
external usenet poster
 
Posts: n/a
Default Conditional formatting changes field enabled property?

I think Sprinks is right, I tried it, but the problem that the format had
changed.
It showed the fields as gray.


--
\\// Live Long and Prosper \\//
BS"D


"Ofer" wrote:

Check if yu have any cde on the on current event of the form that might set
the property of the field to enabled = yes

--
\\// Live Long and Prosper \\//
BS"D


"Richard Corner" wrote:

I have a subform control with continuous forms as its default view. I have
the fields on the subform set to .Enabled = False and .Locked = True as I
want to be able to scroll up and down the records but not to be able to
change any data. The records where the conditional formatting conditions
apply appear to have the .Enabled property set to True allowing the cursor to
enter the field.
Does anyone know about this problem?

  #5  
Old March 16th, 2006, 08:38 AM posted to microsoft.public.access.forms
external usenet poster
 
Posts: n/a
Default Conditional formatting changes field enabled property?

Many Thanks Sprinks, and Ofer.
I didn't recognise that when the fields in the Conditional Formatting window
turned grey, it meant that the enabled property of the field was disabled.
Problem solved.

"Sprinks" wrote:

Richard,

In addition to font, type weight, background color, etc., you can also set
the Enabled property for records meeting the specified condition, which
overrides the Enabled status set in form view.

Open the form in form view, click on the control, select Format, Conditional
Formatting, and click the Enabled button at the far right to disable.

Hope that helps.
Sprinks


"Richard Corner" wrote:

I have a subform control with continuous forms as its default view. I have
the fields on the subform set to .Enabled = False and .Locked = True as I
want to be able to scroll up and down the records but not to be able to
change any data. The records where the conditional formatting conditions
apply appear to have the .Enabled property set to True allowing the cursor to
enter the field.
Does anyone know about this problem?

  #6  
Old April 1st, 2008, 08:48 PM posted to microsoft.public.access.forms
access user
external usenet poster
 
Posts: 78
Default Conditional formatting changes field enabled property?

I'm getting the same behavior.....I want the "Aneurism" field to be coded
with a green color when it's between 1 and 3 and to take a red background
when it's gt 3. I have set the field to be enabled=no and locked=yes in the
'data' properties of the 'Aneurism' control's in the sub-form where it sits
and it does change colors when I test it before I read this response. I
noticed that in addition to changing colors per the conditional formatting
that it loses it's 'protected' status once I invoked the conditional
formatting, however, unless I'm wrong, clicking the 'enable' button in your
emails had the effect of graying it out. I'm perplexed.

"Ofer" wrote:

I think Sprinks is right, I tried it, but the problem that the format had
changed.
It showed the fields as gray.


--
\\// Live Long and Prosper \\//
BS"D


"Ofer" wrote:

Check if yu have any cde on the on current event of the form that might set
the property of the field to enabled = yes

--
\\// Live Long and Prosper \\//
BS"D


"Richard Corner" wrote:

I have a subform control with continuous forms as its default view. I have
the fields on the subform set to .Enabled = False and .Locked = True as I
want to be able to scroll up and down the records but not to be able to
change any data. The records where the conditional formatting conditions
apply appear to have the .Enabled property set to True allowing the cursor to
enter the field.
Does anyone know about this problem?

  #7  
Old April 1st, 2008, 09:13 PM posted to microsoft.public.access.forms
Stephen Lebans
external usenet poster
 
Posts: 619
Default Conditional formatting changes field enabled property?

If I remember correctly, in some versions of Access, the Enabled property is
not respected when you set it via the Conditional Formatting UI. You need to
programmatically set the FormatConditions object to work around this Bug.
There is sample code on my site showing you how to do this.

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.


"Access User" wrote in message
...
I'm getting the same behavior.....I want the "Aneurism" field to be coded
with a green color when it's between 1 and 3 and to take a red background
when it's gt 3. I have set the field to be enabled=no and locked=yes in
the
'data' properties of the 'Aneurism' control's in the sub-form where it
sits
and it does change colors when I test it before I read this response. I
noticed that in addition to changing colors per the conditional formatting
that it loses it's 'protected' status once I invoked the conditional
formatting, however, unless I'm wrong, clicking the 'enable' button in
your
emails had the effect of graying it out. I'm perplexed.

"Ofer" wrote:

I think Sprinks is right, I tried it, but the problem that the format had
changed.
It showed the fields as gray.


--
\\// Live Long and Prosper \\//
BS"D


"Ofer" wrote:

Check if yu have any cde on the on current event of the form that might
set
the property of the field to enabled = yes

--
\\// Live Long and Prosper \\//
BS"D


"Richard Corner" wrote:

I have a subform control with continuous forms as its default view. I
have
the fields on the subform set to .Enabled = False and .Locked = True
as I
want to be able to scroll up and down the records but not to be able
to
change any data. The records where the conditional formatting
conditions
apply appear to have the .Enabled property set to True allowing the
cursor to
enter the field.
Does anyone know about this problem?



  #8  
Old April 1st, 2008, 09:39 PM posted to microsoft.public.access.forms
access user
external usenet poster
 
Posts: 78
Default Conditional formatting changes field enabled property?

That sounds like it could be really useful, but your website's a little
overwhelming, can you please give me a few more details wrt which resource
you're meaning?

"Stephen Lebans" wrote:

If I remember correctly, in some versions of Access, the Enabled property is
not respected when you set it via the Conditional Formatting UI. You need to
programmatically set the FormatConditions object to work around this Bug.
There is sample code on my site showing you how to do this.

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.


"Access User" wrote in message
...
I'm getting the same behavior.....I want the "Aneurism" field to be coded
with a green color when it's between 1 and 3 and to take a red background
when it's gt 3. I have set the field to be enabled=no and locked=yes in
the
'data' properties of the 'Aneurism' control's in the sub-form where it
sits
and it does change colors when I test it before I read this response. I
noticed that in addition to changing colors per the conditional formatting
that it loses it's 'protected' status once I invoked the conditional
formatting, however, unless I'm wrong, clicking the 'enable' button in
your
emails had the effect of graying it out. I'm perplexed.

"Ofer" wrote:

I think Sprinks is right, I tried it, but the problem that the format had
changed.
It showed the fields as gray.


--
\\// Live Long and Prosper \\//
BS"D


"Ofer" wrote:

Check if yu have any cde on the on current event of the form that might
set
the property of the field to enabled = yes

--
\\// Live Long and Prosper \\//
BS"D


"Richard Corner" wrote:

I have a subform control with continuous forms as its default view. I
have
the fields on the subform set to .Enabled = False and .Locked = True
as I
want to be able to scroll up and down the records but not to be able
to
change any data. The records where the conditional formatting
conditions
apply appear to have the .Enabled property set to True allowing the
cursor to
enter the field.
Does anyone know about this problem?




  #9  
Old April 1st, 2008, 11:56 PM posted to microsoft.public.access.forms
Stephen Lebans
external usenet poster
 
Posts: 619
Default Conditional formatting changes field enabled property?

http://www.lebans.com/conditionalformatting.htm

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.


"Access User" wrote in message
...
That sounds like it could be really useful, but your website's a little
overwhelming, can you please give me a few more details wrt which resource
you're meaning?

"Stephen Lebans" wrote:

If I remember correctly, in some versions of Access, the Enabled property
is
not respected when you set it via the Conditional Formatting UI. You need
to
programmatically set the FormatConditions object to work around this Bug.
There is sample code on my site showing you how to do this.

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.


"Access User" wrote in message
...
I'm getting the same behavior.....I want the "Aneurism" field to be
coded
with a green color when it's between 1 and 3 and to take a red
background
when it's gt 3. I have set the field to be enabled=no and locked=yes in
the
'data' properties of the 'Aneurism' control's in the sub-form where it
sits
and it does change colors when I test it before I read this response. I
noticed that in addition to changing colors per the conditional
formatting
that it loses it's 'protected' status once I invoked the conditional
formatting, however, unless I'm wrong, clicking the 'enable' button in
your
emails had the effect of graying it out. I'm perplexed.

"Ofer" wrote:

I think Sprinks is right, I tried it, but the problem that the format
had
changed.
It showed the fields as gray.


--
\\// Live Long and Prosper \\//
BS"D


"Ofer" wrote:

Check if yu have any cde on the on current event of the form that
might
set
the property of the field to enabled = yes

--
\\// Live Long and Prosper \\//
BS"D


"Richard Corner" wrote:

I have a subform control with continuous forms as its default
view. I
have
the fields on the subform set to .Enabled = False and .Locked =
True
as I
want to be able to scroll up and down the records but not to be
able
to
change any data. The records where the conditional formatting
conditions
apply appear to have the .Enabled property set to True allowing
the
cursor to
enter the field.
Does anyone know about this problem?






  #10  
Old April 2nd, 2008, 02:33 PM posted to microsoft.public.access.forms
access user
external usenet poster
 
Posts: 78
Default Conditional formatting changes field enabled property?

Thanks, but I don't think it's what I'm needing at the moment based on the
description

A2KConditionalFormatting.zip is a sample MDB demonstrating how to
programmatically setup Conditional Formatting to simulate:

1) Highlighting of the Current Row for a Form in Continuous or Datasheet View

2) Highlighting of Alternate Rows for a Form in Continuous or Datasheet View

Recall, that when I apply a conditional format to a text control on my
sub-form so as to vary the color depending on the numerical value entered
(1-3 = green, gt 3 = red), that the enabled=no and locked=yes properties get
trashed.

Thx.

"Stephen Lebans" wrote:

http://www.lebans.com/conditionalformatting.htm

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.


"Access User" wrote in message
...
That sounds like it could be really useful, but your website's a little
overwhelming, can you please give me a few more details wrt which resource
you're meaning?

"Stephen Lebans" wrote:

If I remember correctly, in some versions of Access, the Enabled property
is
not respected when you set it via the Conditional Formatting UI. You need
to
programmatically set the FormatConditions object to work around this Bug.
There is sample code on my site showing you how to do this.

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.


"Access User" wrote in message
...
I'm getting the same behavior.....I want the "Aneurism" field to be
coded
with a green color when it's between 1 and 3 and to take a red
background
when it's gt 3. I have set the field to be enabled=no and locked=yes in
the
'data' properties of the 'Aneurism' control's in the sub-form where it
sits
and it does change colors when I test it before I read this response. I
noticed that in addition to changing colors per the conditional
formatting
that it loses it's 'protected' status once I invoked the conditional
formatting, however, unless I'm wrong, clicking the 'enable' button in
your
emails had the effect of graying it out. I'm perplexed.

"Ofer" wrote:

I think Sprinks is right, I tried it, but the problem that the format
had
changed.
It showed the fields as gray.


--
\\// Live Long and Prosper \\//
BS"D


"Ofer" wrote:

Check if yu have any cde on the on current event of the form that
might
set
the property of the field to enabled = yes

--
\\// Live Long and Prosper \\//
BS"D


"Richard Corner" wrote:

I have a subform control with continuous forms as its default
view. I
have
the fields on the subform set to .Enabled = False and .Locked =
True
as I
want to be able to scroll up and down the records but not to be
able
to
change any data. The records where the conditional formatting
conditions
apply appear to have the .Enabled property set to True allowing
the
cursor to
enter the field.
Does anyone know about this problem?






 




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 Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Conditional formatting terryh70 Using Forms 2 December 7th, 2005 03:32 PM
Memo Field Sam General Discussion 12 November 10th, 2005 09:16 PM
Conditional Formatting in a Report amguttman Setting Up & Running Reports 3 August 9th, 2005 05:27 AM
Help Please Conditional Formatting - Visible Property Simon New Users 0 March 21st, 2005 06:07 PM
Design help, please SillySally Using Forms 27 March 6th, 2005 04:11 AM


All times are GMT +1. The time now is 11:57 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.