Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Is there an easier way to do this?
Message
From
26/11/2006 11:57:17
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 9 SP1
OS:
Windows XP SP2
Network:
Windows 2000 Server
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01172477
Message ID:
01172482
Views:
16
>>I have two four place decimal numbers (eg .0123 and .4321) I need to combine them into a unique decimal value for processing. As they are map coordinates, they cannot just be added together because sum of .0123 + .4321 is the same as .4321 + .0123. I'm thinking I could multiply each times 10,000 to remove the decmals. Then convert them to a string value, and using the 'additive' operator, butt them together so that they look like this 01234321 when stored in a table. For processing I would need to convert the number to an eight place decimal value using val() and dividing the result by 100000000. After processing, the resulting decimal output would be coverted to eight places if neccesary and split into two four place value and converted to a four place decimal value and then to two four place integers to be used as a map coordinates.
>>
>>Is there a better way to code this or am I on the right track?
>
>Of course if you store them in separate fields would be easier, but if you can't, try this:
>
>CREATE CURSOR crsTest (MyField N (9,4))
>APPEND BLANK
>lnVar1 = 0.0123
>lnVar2 = 0.4321
>REPLACE MyField WITH lnVar1*10000+lnVar2
>? MyField
>*** Get them back
>lnVar1 = INT(MyField)/10000
>lnVar2 = MyField - lnVar1*10000
>? lnVar1
>? lnVar2
>
>

*********

I can work with that. Thank you brain pool.

*********
I ain't skeert of nuttin eh?
Yikes! What was that?
Previous
Reply
Map
View

Click here to load this message in the networking platform