G
Guest
I have a column (UseCaseNo) with values that look numeric to Access. The
values are a hierarchical numbering scheme: 01.01, 01.01.01, 01.02, 01.02.01,
01.02.02, etc. When I try to use setvalue to set an unbound text box
(SaveUseCaseNo) to the value of UseCaseNo, it appears that Access treats the
values as numeric.
10.07 is saved as 10.07 (good)
03.01 is saved as 3.01 (bad)
02.01.02 is saved as 0 (bad - all the values with more than one decimal
point are 0)
I have tried using Str() and Cstr(). Please help! I really need to save
this value as is, for later retrieving the record from the table.
values are a hierarchical numbering scheme: 01.01, 01.01.01, 01.02, 01.02.01,
01.02.02, etc. When I try to use setvalue to set an unbound text box
(SaveUseCaseNo) to the value of UseCaseNo, it appears that Access treats the
values as numeric.
10.07 is saved as 10.07 (good)
03.01 is saved as 3.01 (bad)
02.01.02 is saved as 0 (bad - all the values with more than one decimal
point are 0)
I have tried using Str() and Cstr(). Please help! I really need to save
this value as is, for later retrieving the record from the table.