I cannot see the Load Started msg. I can see the Load Completed.
how can i display this.
// Check if files exist
if (File.Exists(InputFileName
.Text))
{
lblMsg.Text = "Load Started.";
System.IO.FileInfo filepath = new System.IO.FileInfo(InputFi
leName.Tex
t);
clsGlobal.Global.Path = filepath.DirectoryName;
ProcessSpreadSheet();
btnGenerate.Enabled = true;
grpboxGenerateOttawaFile.E
nabled = true;
btnLoad.Enabled = true;
}
else
{
lblMsg.Text = "File does not exist. Please select a spreadsheet file.";
return;
}
lblMsg.Text = "Load Completed.";
Start Free Trial