Hi,
From the menu item Configure | Report Options.
Select the Tab 'Report File Pathname'
Enable Generate Report File Path
Select 'Specific Directory' in Directory control
Enter Report Path
Enter Base Name (this is default Report)
Or
Enable Specify Fixed Report File Path
Enter the Report File Path: (this is the full pathname plus file extension)
That will set the Static conditions but to ensure that each of your sequencefile uses the correct locations you will have to do the same via the ReportOption callback.
First add the Sequence Callback ReportOptions to your SequenceFile.
Then you will have to alter the Parameters.ReportOptions passed to the sequence callback.
The Ones you are interested in are:
Parameters.ReportOptions.GeneratePath = True
Parameters.ReportOptions.DirectoryType = "SpecificDirectory"
Parameters.ReportOptions.Directory = "
" eg "C:\Temp\Junk"
Parameters.ReportOptions.BaseName = "Report" (this is default)
Parameters.ReportOptions.Format = "txt"
(You may want to set some of the other parameters such as NewFileNameForEachUUT, ForceFileNameToBeUnique etc..) There is a property for each of the controls in the Configure | Report Options dialog.
Or
Parameters.ReportOptions.GeneratePath = False
Parameters.ReportOptions.ReportFilePath = "" eg "C:\temp\my report file.txt"
Hope this helps.
Regards
Ray Farmer
Regards
Ray Farmer
