Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Type function is not smart enough
Message
From
24/10/2002 14:40:25
 
 
To
24/10/2002 14:32:11
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00714883
Message ID:
00715062
Views:
24
>>Nadya,
>>
>>TYPE() works perfectly. It returns the type of an expression. The expression "SomeUDF(123)" is character because "someudf(123)" is a literal string when "SomeUDF(123)" is evaluated it becomes SomeUDF(123) which is a string of characters.
>>
>>However TYPE(SomeUDF(123)) will retunr the type of the value that evaluating the expression results in, so if the UDF retuirns Character then the TYPE will retunr C.
>>
>>This is why;
>>
>>
>>Var = 123
>>?TYPE(Var) && N && Theexpression Var evaluates to 123 which is a number
>>?TYPE("Var") && C The expression "Var" evals to Var which is a string
>>
>>
>>There is nothing wrong with the TYPE() function it just takes some study to fully underatand how it works.
>Jim;
>In VFP6 SP5
>
>var = 123
>?TYPE(var) && generates function argument value, type or count invalid error
>?TYPE("var") && returns "N"
>?VARTYPE(var) && returns "N"
>?VARTYPE("var") && returns "C"
>
>This is how type() function has worked in previous versions,has this changed in VFP7 and above?

I think his Var=123 was just a typo and should have been Var="123"

Alan
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform