Displaying Last Update!!

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I created a field in my table that is called Date Modified and it shows the
date and time the table was modified. Now I have a form and at the bottom of
the form I want to create a label or text box that shows the date modified
from my table. What should I do?
 
I created a field in my table that is called Date Modified and it shows the
date and time the table was modified. Now I have a form and at the bottom of
the form I want to create a label or text box that shows the date modified
from my table. What should I do?

Bind the control to the Field you created and set Locked = Yes and Enabled = No
_______________________________________________
hth - RuralGuy (RG for short)
Please post to the NewsGroup so all may benefit.
 
When i try to do that I get "#Name?" in the box, what can i do?

Can you go to the Data tab of the Properties sheet for the TextBox and in
ControlSource line press the down arrow and find your field and select it?
_______________________________________________
hth - RuralGuy (RG for short)
Please post to the NewsGroup so all may benefit.
 
Nope

RuralGuy said:
Can you go to the Data tab of the Properties sheet for the TextBox and in
ControlSource line press the down arrow and find your field and select it?
_______________________________________________
hth - RuralGuy (RG for short)
Please post to the NewsGroup so all may benefit.
 

It sounds like your form is not bound to the table you described. Are you
displaying any other fields from this table on your form? To bind your form to
this table you need to go to the data tab of the properties sheet of the Form
and use the down arrow on the RecordSource line to select the table.
_______________________________________________
hth - RuralGuy (RG for short)
Please post to the NewsGroup so all may benefit.
 
See my form that I am describing is really a menu that has a few options
(update list, view graphs, view chart) and when i click the update list, I
would like it to show at the bottom when the database was lasted modified.
Each button is linked to either a form or a macro.
 
See my form that I am describing is really a menu that has a few options
(update list, view graphs, view chart) and when i click the update list, I
would like it to show at the bottom when the database was lasted modified.
Each button is linked to either a form or a macro.

Then you will probably have to use DLookUp() to get your field. Remember, event
though you have been calling it the LastModified date for the *Table*, I'm
pretty sure the method you are using will yield the LastModified date for a
*Record*.
_______________________________________________
hth - RuralGuy (RG for short)
Please post to the NewsGroup so all may benefit.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top