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 ABC: Field data types being passed as any 1998-06-29 -- Jim Katz Newsgroups: topspeed.products.c4
> Just wanted to know if there is a way to determine what type a
> variable has been passed to an untyped variable parameter (either by
> value ("?") or by reference ("*?")). Ideally, I'd like to make a
> function that tests this without "bit fiddling".. that is, it "asks"
> Clarion for the original type. Is there something like that either as a
> Clarion command, API or...? All opinions greatly appreciated.
If its a field within a file, you can use the PROP:Type syntax to determine
the type. Unfortunately this property has not been extended, AFAIK, to all
variables.. Here is some code off the top of my head, (not tested)
MyProc PROCEDURE(*? PV,*File MyFile)
PassVar ANY
FieldPos BYTE
PassType STRING(8)
Code
PassVar &= PV
FieldPos = WHERE(MyFile.Record,PassVar)
PassType = MyFile{PROP:Type,FieldPos)
HTH
--
Jim Katz
Today is November 23, 2024, 2:15 am This article has been viewed 35378 times. Google search has resulted in 7 hits on this article since January 25, 2004.
|
|