Login
`
Templates, Tools and Utilities
|
||
Add a comment to an Icetips ArticlePlease add your comments to this article.
Please note that you must provide both a name and a valid email address in order
for us to publish your comment. Comments are moderated and are not visible until they have been approved. Spam is never approved!
Back to article list Search Articles Add Comment Printer friendly Direct link Clarion in general: Converting hex oct or bin to decimal using Evaluate 2002-03-03 -- Doug Newsgroups: comp.lang.clarion
Like others have said... it is not a direct CW function.
However, there is an API that can do it for you... sorry I do not have it
handy, but if you search MS KB, you should find it.
Also, I copied this some time ago from somebody else:
An easy way to convert to decimal is:
Hex: EVALUATE('0' & MyNum & 'h')
Oct: EVALUATE('0' & MyNum & 'o')
Bin: EVALUATE('0' & MyNum & 'b')
Today is November 21, 2024, 7:28 am This article has been viewed 35215 times. Google search has resulted in 241 hits on this article since January 25, 2004.
|
|