fixed an error message

This commit is contained in:
Rich 2012-04-18 18:05:45 +00:00
parent 628e9cf390
commit 6358acba7d

View File

@ -34,7 +34,7 @@ namespace Volian.Controls.Library
if (File.Exists(_FileName))
rtbViewFile.LoadFile(_FileName,_RTBType);
else
MessageBox.Show(string.Format("File Note found: {0}", _FileName), "Error Displaying File", MessageBoxButtons.OK, MessageBoxIcon.Error);
MessageBox.Show(string.Format("File Not found: {0}", _FileName), "Error Displaying File", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}