Ask a Question related to Microsoft Access, Design and Development.
-
Trey #1
Linking date field to text field entry
Is there a way to setup a date field that will
automatically enter the date when any information is
entered into a field next to it?
Trey Guest
-
Comparing current field data with last entry for field
Hi. I have a form that is inserting sales data on a daily basis. I have a field named "RoundTOTAL" which is the total sales for the day rounded to... -
Linking Text Field
Have you found any success in linking text fields? I have received some information in regards to using javascript but I am hung up due to my... -
Date text Field
I have an asp form that is submitted to sql server 2000. There are three date fields. How can I allow the user to enter the date without any... -
Converting a text field to a date field - FM6
I need to convert a Text field containing both auto and manually entered dates over to a Date field. The records that were autoentered move over... -
date in text field
How can I include a date that is formatted in the following structure 9-July-03, and include it in a form text field? The form input code is:... -
Darren #2
Re: Linking date field to text field entry
Just as an example....
If you have field A and field B, A being the date field and named txtA,
field B is named txtB. Use the following code added to the AfterUpdate
event for B:
Private Sub txtB()
Me.txtA = Date
End Sub
Once you have added details to field B and pressed enter or clicked on
another field, field A will display and record the current date.
HTH
Darren
"Trey" <tgill@issch.state.in.us> wrote in message
news:030501c34bcc$992d72d0$a301280a@phx.gbl...> Is there a way to setup a date field that will
> automatically enter the date when any information is
> entered into a field next to it?
>
Darren Guest



Reply With Quote

