//Check your file name and path, it looks incorrect to me
string fileName = @"C:Documents and Settings\JBRANCODesktopdev.txt";
string text;
StreamReader re = System.IO.File.OpenText(fileName);
text = re.ReadToEnd();
re.Close();
MessageBox.Show(text);




Reply With Quote