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 » Database Design
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

event help



 
 
Thread Tools Display Modes
  #11  
Old December 21st, 2008, 05:52 PM posted to microsoft.public.access.tablesdbdesign
Tom
external usenet poster
 
Posts: 1,359
Default event help

using the IIF function it now works but any other way , it displays the
message all the time..

Thanks again for the suggestion

Tom



"Clifford Bass" wrote:

Hi Tom,

No. Leave it in the detail. That is where is should be. Do I take it
that it is working now? Or is there still the message for all rows?

Clifford Bass

"Tom" wrote:

The label was in the detail sectio should i move it to a header or footer?

"Clifford Bass" wrote:

  #12  
Old December 21st, 2008, 08:18 PM posted to microsoft.public.access.tablesdbdesign
Clifford Bass[_2_]
external usenet poster
 
Posts: 1,295
Default event help

Hi Tom,

You are welcome. It is a bit odd, but since you got one method to
work, that is really all that counts.

Clifford Bass

"Tom" wrote:

using the IIF function it now works but any other way , it displays the
message all the time..

Thanks again for the suggestion

Tom

  #13  
Old December 22nd, 2008, 10:09 AM posted to microsoft.public.access.tablesdbdesign
Tom
external usenet poster
 
Posts: 1,359
Default event help

Yes that is all that counts. I was just curious as to why there was no after
update command available on the tab for the label I created since I have done
this before. I even included a checkbox field and there was no after update
event for that either. What dicxtates the availabaility of an after update
event/ Is it only certain types of fields?

Thanks again
Tom

"Clifford Bass" wrote:

Hi Tom,

You are welcome. It is a bit odd, but since you got one method to
work, that is really all that counts.

Clifford Bass

"Tom" wrote:

using the IIF function it now works but any other way , it displays the
message all the time..

Thanks again for the suggestion

Tom

  #14  
Old December 22nd, 2008, 04:45 PM posted to microsoft.public.access.tablesdbdesign
Clifford Bass[_2_]
external usenet poster
 
Posts: 1,295
Default event help

Hi Tom,

Labels do not have events when connected to other controls. But do
when not connected. They would not have an after update since they are not
something the user modifies. Controls on a report do not have update events
since they are only reporting. At least that is my understanding.

Clifford Bass

"Tom" wrote:

Yes that is all that counts. I was just curious as to why there was no after
update command available on the tab for the label I created since I have done
this before. I even included a checkbox field and there was no after update
event for that either. What dicxtates the availabaility of an after update
event/ Is it only certain types of fields?

Thanks again
Tom

  #15  
Old December 22nd, 2008, 04:58 PM posted to microsoft.public.access.tablesdbdesign
Beetle
external usenet poster
 
Posts: 1,254
Default event help

There is no After Update event for controls on a report, because
they cannot be updated. Reports only display/print data, they do not
allow updates by the user.

You're thinking of the After Update event for controls on a form, which
are designed for user input/updating. However, labels do not have an
After Update event , even on forms, because they are only for
display. You can update/change their value programmatically, but the
After Update event is related to user updates, not programmatic updates.

Form controls that can actually be updated by the user have After Update
events. The form itself also has an After Update event.

--
_________

Sean Bailey


"Tom" wrote:

Yes that is all that counts. I was just curious as to why there was no after
update command available on the tab for the label I created since I have done
this before. I even included a checkbox field and there was no after update
event for that either. What dicxtates the availabaility of an after update
event/ Is it only certain types of fields?

Thanks again
Tom

"Clifford Bass" wrote:

Hi Tom,

You are welcome. It is a bit odd, but since you got one method to
work, that is really all that counts.

Clifford Bass

"Tom" wrote:

using the IIF function it now works but any other way , it displays the
message all the time..

Thanks again for the suggestion

Tom

  #16  
Old December 22nd, 2008, 09:00 PM posted to microsoft.public.access.tablesdbdesign
Tom
external usenet poster
 
Posts: 1,359
Default event help

That was the problem. Ihad done it on a form not on a report. Thanks for
clearing that up.

Tom

"Beetle" wrote:

There is no After Update event for controls on a report, because
they cannot be updated. Reports only display/print data, they do not
allow updates by the user.

You're thinking of the After Update event for controls on a form, which
are designed for user input/updating. However, labels do not have an
After Update event , even on forms, because they are only for
display. You can update/change their value programmatically, but the
After Update event is related to user updates, not programmatic updates.

Form controls that can actually be updated by the user have After Update
events. The form itself also has an After Update event.

--
_________

Sean Bailey


"Tom" wrote:

Yes that is all that counts. I was just curious as to why there was no after
update command available on the tab for the label I created since I have done
this before. I even included a checkbox field and there was no after update
event for that either. What dicxtates the availabaility of an after update
event/ Is it only certain types of fields?

Thanks again
Tom

"Clifford Bass" wrote:

Hi Tom,

You are welcome. It is a bit odd, but since you got one method to
work, that is really all that counts.

Clifford Bass

"Tom" wrote:

using the IIF function it now works but any other way , it displays the
message all the time..

Thanks again for the suggestion

Tom

  #17  
Old December 23rd, 2008, 11:55 AM posted to microsoft.public.access.tablesdbdesign
Tom
external usenet poster
 
Posts: 1,359
Default event help

That cleared it up . I really appreciate the help. You guys provide a
fantastic service. Thanks again to all of you

Tom

"Beetle" wrote:

There is no After Update event for controls on a report, because
they cannot be updated. Reports only display/print data, they do not
allow updates by the user.

You're thinking of the After Update event for controls on a form, which
are designed for user input/updating. However, labels do not have an
After Update event , even on forms, because they are only for
display. You can update/change their value programmatically, but the
After Update event is related to user updates, not programmatic updates.

Form controls that can actually be updated by the user have After Update
events. The form itself also has an After Update event.

--
_________

Sean Bailey


"Tom" wrote:

Yes that is all that counts. I was just curious as to why there was no after
update command available on the tab for the label I created since I have done
this before. I even included a checkbox field and there was no after update
event for that either. What dicxtates the availabaility of an after update
event/ Is it only certain types of fields?

Thanks again
Tom

"Clifford Bass" wrote:

Hi Tom,

You are welcome. It is a bit odd, but since you got one method to
work, that is really all that counts.

Clifford Bass

"Tom" wrote:

using the IIF function it now works but any other way , it displays the
message all the time..

Thanks again for the suggestion

Tom

  #18  
Old December 23rd, 2008, 02:53 PM posted to microsoft.public.access.tablesdbdesign
Clifford Bass[_2_]
external usenet poster
 
Posts: 1,295
Default event help

You are welcome Tom!

Clifford Bass

"Tom" wrote:

That cleared it up . I really appreciate the help. You guys provide a
fantastic service. Thanks again to all of you

Tom

 




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


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