You cannot change data types in that way.
Your choices are:
1) Create a new field of the correct type, run an Update query to transfer
the data from the old field to the new field, delete the old field then
rename the new field
2) Use DDL (Data Definition Language)
ALTER TABLE NameOfTable ALTER COLUMN NameOfField NewDataType
ALTER TABLE MyTable ALTER COLUMN Field3 Double
The data types in DDL are:
Binary BINARY
Boolean YESNO
Byte BYTE
Currency CURRENCY
Date/Time DATETIME
Decimal DECIMAL
Double DOUBLE
GUID GUID
Integer INTEGER
Long LONG
Long Binary (OLE Object) IMAGE
Memo MEMO
Single SINGLE
Text TEXT

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
> Below is part of a code that somebody had given me to change the property
> of
[quoted text clipped - 11 lines]
>
> Toks