Copy value

Xenix

Registered User.
Local time
Today, 22:57
Joined
Oct 8, 2001
Messages
124
I have a problem with copying data from one
field from a table into a field on my form.
I have declared them with the same format but get the error:
"The value you entered isn't valid for this field"

I use the code:
Forms!Quotation!quotecurrency = Me.GBP

Anyone help me?

Thank you
Mike
 
Not teaching you to suck eggs.....but are the two field types the same?
 
Yes they are the same Number, Single, 3 decimals.

also if I place the value at the end of the code end e.g:
Forms!Quotation!quotecurrency = 1.345

it works fine?


[This message has been edited by Xenix (edited 01-14-2002).]
 
Have you tried:

Forms!Quotation!quotecurrency.Value = Me.GBP.Value

BL
hth
 

Users who are viewing this thread

Back
Top Bottom