Data Fields

  • Thread starter Thread starter NickH
  • Start date Start date
N

NickH

Hi

I have a number of Text Box's in a form, that I wish to
add data into, for the first record and then to
automatically update with the same data for new records.
For Example, Project Name:Siris
Product Number: 23-KM0222-02
Job Number: 23514311-009
etc.

Is this possible.
Any help would be much appreciated

Thanks

Nick
 
You need to store the data first entered somewher, whether into a table or
in a temporary variable (depending on what you want to do)
and then when the user adds a new record, your code will go and check the
content of your variable and sets it as default into your new record
 
Warrio said:
You need to store the data first entered somewher, whether into a table or
in a temporary variable (depending on what you want to do)
and then when the user adds a new record, your code will go and check the
content of your variable and sets it as default into your new record

"NickH" <[email protected]> a écrit dans le message de
Look at the tag property of the text boxes. In the AfterUpdate event of
the form you can store the
data in the tag. Then in the OnCurrent event of the form you can check
to see if the record is new.
If it is, restore the tag property to the various controls.

Ron
 
Back
Top