‎2009 Apr 14 6:12 PM
If you have a Form that has parameters declared by using.
Example
Form Go_Do_This Using Param1 Param2 Param3 Param4
Then for example you have two different perform statements.
Perform Go_Do_This Using 'A' 1 'B' 'C'.(Char,Number,Char,Char)
Perform Go_Do_This Using 1 'B' 'C' 'D'. (Number,Char,Char,Char)
Since the form statement does not specify a data type for the parameters, does
it take the data type of the calling perform statement?
Let me know if this is confusing. I am trying to get to the bottom of an issue.
Thanks,
Stephen
‎2009 Apr 14 6:16 PM
It does not take the data type of the calling perform statement .. If you don't declare anything in the form
then by default it considers it to be a char data type ...
‎2009 Apr 14 6:16 PM
It does not take the data type of the calling perform statement .. If you don't declare anything in the form
then by default it considers it to be a char data type ...
‎2009 Apr 14 6:16 PM
Rather than asking, why don't you just try it out? I doubt if much could be simpler.
Rob
‎2009 Apr 14 6:30 PM
This is a very basic question and could have helped yourself just by reading some documents and searching on internet.
Regards,
Lalit Mohan Gupta.
‎2009 Apr 14 6:37 PM
Hey Steve - this is the internet. You might actually want to check the answer you gave ten points to
Rob