Hi,
I am new to programming and want to know in simple steps (if anyone can provide me with psuedo code) how to create a form based program that reads files containing unformatted data/text and displays the data as text in the form.
Loading
Hi,
I am new to programming and want to know in simple steps (if anyone can provide me with psuedo code) how to create a form based program that reads files containing unformatted data/text and displays the data as text in the form.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Jan MontanoPosted Jun 6, 2007, 6:08 AM
What do you mean by form based? Can you give an example of what you have in mind?
To read a file, you use the StreamReader class.
string path = @"c:\temp\MyTest.txt";
try
{
}