|
@@ -1062,6 +1062,7 @@ namespace OTSIncAReportApp
|
|
|
openFileDialog.Multiselect = false;
|
|
|
if (openFileDialog.ShowDialog() == DialogResult.OK)
|
|
|
{
|
|
|
+ this.Cursor = Cursors.WaitCursor;
|
|
|
string strFilePath = System.IO.Path.GetDirectoryName(openFileDialog.FileName);
|
|
|
|
|
|
System.IO.DirectoryInfo folder = new System.IO.DirectoryInfo(strFilePath);
|
|
@@ -1073,6 +1074,7 @@ namespace OTSIncAReportApp
|
|
|
this.m_RstWindow.AddSampleResult(file.FullName);
|
|
|
}
|
|
|
}
|
|
|
+ this.Cursor = Cursors.Default;
|
|
|
return true;
|
|
|
}
|
|
|
|