Hi everybody,
This may sound like a strange request but I need to know how I convert
a number that is represented as string into a NEGATIVE value with the least
amount of CPU cycles. The result should be a numeric variable.
Eventually there is an operation on the result and that result is stored as
a string.
Or are there other tricks.
Steven
This may sound like a strange request but I need to know how I convert
a number that is represented as string into a NEGATIVE value with the least
amount of CPU cycles. The result should be a numeric variable.
Code:
Dim extA as Ext Dim A as String A = "5" A = "-" & A extA = Val(A)
a string.
Or are there other tricks.
Steven
Comment