by EugeneF » Wed Dec 28, 2011 6:40 pm
Hi Martin,
I am capturing data using the following code:
string sCell_0_0, sCell_0_10, sCell_0_RT;
sCell_0_0 = repo.FormFSC_Rater___California_A.RowN0.Cell_0_0.Text;
sCell_0_10 = repo.FormFSC_Rater___California_A.RowN0.Cell_0_10.Text;
sCell_0_RT = repo.FormFSC_Rater___California_A.RowN0.Cell_0_RT.Text;
Report.Log(ReportLevel.Info, sCell_0_0);
Report.Log(ReportLevel.Info, sCell_0_RT);
Report.Log(ReportLevel.Info, sCell_0_10);
It's probably not the best way to do my task, however, it works.
Is there any possibility to save my variables into Excel or any other file types?
Thanks.