--
You received this message because you are subscribed to the Google "LoadRunner" group.
To post to this group, send email to LR-Loa...@googlegroups.com
To unsubscribe from this group, send email to
LR-LoadRunne...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/LR-LoadRunner?hl=en
Hi,
Use below code and try
long f;
f=fopen(c:\filename.txt,"a+");
Then capture the value whch u want find.
fprintf(f,"%s\n",lr_eval_string("{parmname}"));
fclose(f);
Hope this might help u to save the captured text in file.