‎2007 Apr 26 3:20 PM
Hi all,
I have a statment like this
test = xyz
set parameter id 'DIR' field test.
and somewhere else
get parameter id 'DIR' field val.
now val = xyz.
now i want to remove valie from DIR
LET ME KNOW HOW TO ACHIEVE THIS
THANKS
‎2007 Apr 26 3:23 PM
Hi,
Just after the GET do a
set parameter id 'DIR' field SPACE.
Guess this should work.
Cheers
VJ
‎2007 Apr 26 3:23 PM
Hi,
Just after the GET do a
set parameter id 'DIR' field SPACE.
Guess this should work.
Cheers
VJ
‎2007 Apr 26 3:25 PM
Try using FREE MEMORY.
1 question: Are you recalling again the same program to get some new values in DIR? thts the reason why you want to clear the values.
Regards,
Amey
Message was edited by:
Amey Potale
‎2007 Apr 26 3:28 PM
Hi Amey,
I am using several set parametrs in the same program .If i use free memory then iam afraid it would clear all those right?
Thanks
‎2007 Apr 26 3:30 PM
Hi ,
Try using
set parameter id 'DIR' field ' '.
this shouls free the value
Thanks
venki
‎2007 Apr 26 3:31 PM
Use at the end of program only after last GET PARAMETER.
set parameter id 'DIR' field ' '. OR
set parameter id 'DIR' field space.
will not load the values next time run the program.
Regards,
Amey
Message was edited by:
Amey Potale
‎2007 Apr 26 3:32 PM
Hi all,
Thanks for your replies.Igot resolved by setting it to space.
I awarded points to all
Thanks
Deepthi