Click here to Skip to main content
15,920,508 members
Home / Discussions / C#
   

C#

 
GeneralRe: c# adding events to programmaticlly added controls Pin
Nagy Vilmos22-Jul-09 1:10
professionalNagy Vilmos22-Jul-09 1:10 
GeneralRe: c# adding events to programmaticlly added controls Pin
Luc Pattyn22-Jul-09 1:20
sitebuilderLuc Pattyn22-Jul-09 1:20 
JokeRe: c# adding events to programmaticlly added controls Pin
DaveyM6922-Jul-09 1:34
professionalDaveyM6922-Jul-09 1:34 
GeneralRe: c# adding events to programmaticlly added controls Pin
Luc Pattyn22-Jul-09 1:39
sitebuilderLuc Pattyn22-Jul-09 1:39 
GeneralRe: c# adding events to programmaticlly added controls Pin
Nagy Vilmos22-Jul-09 2:02
professionalNagy Vilmos22-Jul-09 2:02 
GeneralRe: c# adding events to programmaticlly added controls Pin
Luc Pattyn22-Jul-09 3:27
sitebuilderLuc Pattyn22-Jul-09 3:27 
GeneralRe: c# adding events to programmaticlly added controls Pin
DaveyM6922-Jul-09 3:47
professionalDaveyM6922-Jul-09 3:47 
GeneralRe: c# adding events to programmaticlly added controls Pin
Nagy Vilmos22-Jul-09 3:54
professionalNagy Vilmos22-Jul-09 3:54 
AnswerRe: c# adding events to programmaticlly added controls Pin
allexserban22-Jul-09 1:12
allexserban22-Jul-09 1:12 
GeneralRe: c# adding events to programmaticlly added controls Pin
Nagy Vilmos22-Jul-09 2:03
professionalNagy Vilmos22-Jul-09 2:03 
QuestionHow to login a user to a website using HttpWebRequest and HttpWebResponse Pin
sumit703422-Jul-09 0:45
sumit703422-Jul-09 0:45 
AnswerRe: How to login a user to a website using HttpWebRequest and HttpWebResponse Pin
Member 103390722-Jul-09 1:24
Member 103390722-Jul-09 1:24 
GeneralRe: How to login a user to a website using HttpWebRequest and HttpWebResponse Pin
sumit703422-Jul-09 1:28
sumit703422-Jul-09 1:28 
QuestionRe Sizing List View Column Pin
satsumatable22-Jul-09 0:38
satsumatable22-Jul-09 0:38 
AnswerRe: Re Sizing List View Column Pin
DaveyM6922-Jul-09 0:55
professionalDaveyM6922-Jul-09 0:55 
AnswerRe: Re Sizing List View Column Pin
Mycroft Holmes22-Jul-09 1:00
professionalMycroft Holmes22-Jul-09 1:00 
QuestionSome questions about using the C# code compiler ( CSharpCodeProvider ) [modified] Pin
MafiaMoe22-Jul-09 0:38
MafiaMoe22-Jul-09 0:38 
AnswerRe: Some questions about using the C# code compiler ( CSharpCodeProvider ) Pin
MafiaMoe22-Jul-09 11:44
MafiaMoe22-Jul-09 11:44 
QuestionStream Reader Problem Pin
Paul Unsworth22-Jul-09 0:09
Paul Unsworth22-Jul-09 0:09 
AnswerRe: Stream Reader Problem Pin
OriginalGriff22-Jul-09 0:26
mveOriginalGriff22-Jul-09 0:26 
GeneralRe: Stream Reader Problem Pin
Paul Unsworth22-Jul-09 0:43
Paul Unsworth22-Jul-09 0:43 
GeneralRe: Stream Reader Problem Pin
OriginalGriff22-Jul-09 1:04
mveOriginalGriff22-Jul-09 1:04 
You mean it misses the first character of every line?

File:
0Hello
1There
2Goodbye

gives you three lines "hello", "There" and "Goodbye"?
What is so different about your code from the standard and very boring:
using (StreamReader sr = new StreamReader(@"C:\XXTemp\Lines.txt"))
    {
    string s;
    while ((s = sr.ReadLine()) != null)
        {
        MessageBox.Show(s);
        }
    }


No trees were harmed in the sending of this message; however, a significant number of electrons were slightly inconvenienced.

This message is made of fully recyclable Zeros and Ones

GeneralRe: Stream Reader Problem Pin
Paul Unsworth22-Jul-09 1:20
Paul Unsworth22-Jul-09 1:20 
GeneralRe: Stream Reader Problem Pin
OriginalGriff22-Jul-09 1:23
mveOriginalGriff22-Jul-09 1:23 
GeneralRe: Stream Reader Problem Pin
Paul Unsworth22-Jul-09 1:38
Paul Unsworth22-Jul-09 1:38 

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.