Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to find the datatype of a parameter in a function
Message
From
31/07/1998 03:29:25
 
 
To
31/07/1998 03:13:07
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00122980
Message ID:
00122983
Views:
12
sorry the function name misspelled(typographical error)

I am writing a function which takes any data type as the parameter.

Now in that function I have to check what is that parameter data type, do some manipulation and return the data in the same data type as passed.


eg :

Funct typeofvar
param myvar

if type(str(myvar)) = 'N' then
? 'numeric'
return type(myvar)
else
if type(mvar) ='C' then
? 'charecter'
return type(myvar)
endif
endif

return

**************
**Main Prog

=typeofvar('12')
=typeofvar(12)
******* end of prog

the main problem lies with type of data passed
Previous
Reply
Map
View

Click here to load this message in the networking platform