12-04-2008 07:29 AM
Hi All,
I intend to generate 2 reports txt and html on the fly for the same execution of Client sequence file. Writing each step result in txt file followed by writing into html seems to memory intensive operation.
Can any body suggest me the better way to do it.Example of any sort will be great help.
Thanks in advance
VDC
02-06-2009 09:44 AM
02-13-2009 02:47 PM
Are you trying to get the standard templated report for each file?
i.e. Do you want the standard TestStand 'txt' report, and the standard TestStand 'html' at the same time, on the fly? or are you creating a simple/custom text report at the same time as the conventional HTML report?
There's several different ways to approach the problem that shouldn't be too programming intensive (compared to the overhead of just having on-the-fly active in general) as it's mostly a string formatting problem. The memory side of things ought to also be reasonable, as on the fly reporting only deals with the current step as a string... usually it's the speed of the constant file accesss that people find discouraging...
If you can explain a little more about your report needs I may have an example that is relevant if you're a labview user.