Re: Add data from one field to another



"Dimitris" <interpackNOSPAM@xxxxxxxxxxx> wrote in message
news:e01UvlH5FHA.2604@xxxxxxxxxxxxxxxxxxxxxxx
> Hello,
> What I need is in each record of a form to be able to add the data of one
> field to another field. For example: There is the field F1 and the user
> entered the word "Europe" in that field. When he comes to the field F2 I
> would like the user to be able by clicking on a button or something to add
> the word "Europe" of F1 to F2. That must not be always done but only if
> the user wishes to?
> Is it possible?

Yes it is but why you'd want to do it is another issue. In a command button
On Click even you'd need something like:

Me.Refresh
Me.txtF2 = Me.txtF1

Where txtFn are the names of your text boxes.

HTH - Keith.
www.keithwilby.com


.


Loading