Hi again,
Excuse me for my strange explanations about the situation.
Really, that was because of the "strange" situation that was happened!
I have played with my app an hour or two, and finally I found out the
reason.
As I have explained before, when I load a file into my TextBox (called
mainTB) in windows XP, there is no problem. But in windows 98, nothing
shows up. I think that's because of the file size. When file size is
less than 40KB or so, there's no problem in 98. But for larger files,
the problem arises. My app is not supposed to handle very large files.
I think the largest file it should handle is about 5MB. This strange
thing does not take place in XP.
(More details

When I paste a text more than 40KB into mainTB, nothing happenes. But
I can paste texts with size less than 40KB normally.
If u want to know more details, here u r (I have enhanced my code, so
that it doesn't use StringBuilder anymore):
If OpenFileDialog1.ShowDialog(Me) = DialogResult.OK Then
Dim sr As StreamReader
sr = File.OpenText(OpenFileDialog1.FileName)
mainTB.Text = sr.ReadToEnd
sr = Nothing
END If
Another notice:
In windows 98, notepad cannot open large files and asks us if we want
to open the file with wordpad. Is this problem related to mine?
If the problem is related to TextBox implementation in windows 98,
what can I do? (I also cannot use RichTextBox, 'cause it is too slow
for loading even little files)