Click here to Skip to main content
15,914,016 members
Home / Discussions / C#
   

C#

 
GeneralRe: SOLVED - TreeView node right-clicked is not the "selected" node... Pin
rhoward5-Jun-02 11:45
professionalrhoward5-Jun-02 11:45 
GeneralRepository controls not redrawing -tough one Pin
5-Jun-02 7:01
suss5-Jun-02 7:01 
Generalcomon now, lets see a little effort Pin
5-Jun-02 11:48
suss5-Jun-02 11:48 
GeneralRe: Repository controls not redrawing -tough one Pin
James T. Johnson5-Jun-02 12:36
James T. Johnson5-Jun-02 12:36 
GeneralRe: Repository controls not redrawing -tough one Pin
6-Jun-02 6:14
suss6-Jun-02 6:14 
GeneralAnswered. if anyone reads this far Pin
7-Jun-02 6:22
suss7-Jun-02 6:22 
GeneralPreserving thumbnail metadata Pin
dsweet5-Jun-02 6:14
dsweet5-Jun-02 6:14 
GeneralRe: Preserving thumbnail metadata Pin
James T. Johnson5-Jun-02 12:59
James T. Johnson5-Jun-02 12:59 
GeneralRe: Preserving thumbnail metadata Pin
dsweet6-Jun-02 5:22
dsweet6-Jun-02 5:22 
GeneralRe: Preserving thumbnail metadata Pin
James T. Johnson6-Jun-02 5:20
James T. Johnson6-Jun-02 5:20 
GeneralRe: Preserving thumbnail metadata Pin
James T. Johnson6-Jun-02 5:50
James T. Johnson6-Jun-02 5:50 
GeneralRe: Preserving thumbnail metadata Pin
dsweet6-Jun-02 6:51
dsweet6-Jun-02 6:51 
GeneralRe: Preserving thumbnail metadata Pin
James T. Johnson6-Jun-02 7:00
James T. Johnson6-Jun-02 7:00 
GeneralRe: Preserving thumbnail metadata Pin
dsweet6-Jun-02 7:22
dsweet6-Jun-02 7:22 
GeneralRe: Preserving thumbnail metadata Pin
dsweet6-Jun-02 13:50
dsweet6-Jun-02 13:50 
GeneralRe: Preserving thumbnail metadata Pin
James T. Johnson6-Jun-02 13:56
James T. Johnson6-Jun-02 13:56 
GeneralCall for help - Re: Preserving thumbnail metadata Pin
James T. Johnson6-Jun-02 14:01
James T. Johnson6-Jun-02 14:01 
GeneralRe: Call for help - Re: Preserving thumbnail metadata Pin
dsweet6-Jun-02 14:22
dsweet6-Jun-02 14:22 
GeneralRe: Call for help - Re: Preserving thumbnail metadata Pin
dsweet7-Jun-02 7:13
dsweet7-Jun-02 7:13 
GeneralRe: Preserving thumbnail metadata Pin
James T. Johnson10-Jun-02 8:58
James T. Johnson10-Jun-02 8:58 
GeneralRe: Preserving thumbnail metadata Pin
dsweet11-Jun-02 4:12
dsweet11-Jun-02 4:12 
GeneralConverting from DateTime to UInt32 and back Pin
5-Jun-02 5:19
suss5-Jun-02 5:19 
GeneralFile Read in C# Pin
Member 169775-Jun-02 1:33
Member 169775-Jun-02 1:33 
GeneralRe: File Read in C# Pin
Mazdak5-Jun-02 2:32
Mazdak5-Jun-02 2:32 
I've not test this,but I think thats what you want.(its from MSDN)

StreamReader srReadLine = new StreamReader(
   (System.IO.Stream)File.OpenRead("C:\\Temp\\Test.txt"),
System.Text.Encoding.ASCII);
srReadLine.BaseStream.Seek(0, SeekOrigin.Begin);
while (srReadLine.Peek() > -1) {
   Console.WriteLine(srReadLine.ReadLine());
}
srReadLine.Close();


Mazy

"The more I search, the more my need
For you,
The more I bless, the more I bleed
For you."The Outlaw Torn-Metallica

GeneralRe: File Read in C# Pin
Rickard Andersson205-Jun-02 2:47
Rickard Andersson205-Jun-02 2:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.