Click here to Skip to main content
15,888,733 members
Home / Discussions / C#
   

C#

 
AnswerRe: Triggering a cellformatting event of a datagridview Pin
Maciej Los21-May-18 20:44
mveMaciej Los21-May-18 20:44 
Questioncoloring a cell via datagridview cellformatting event Pin
leone19-May-18 10:11
leone19-May-18 10:11 
AnswerRe: coloring a cell via datagridview cellformatting event Pin
Luc Pattyn19-May-18 12:04
sitebuilderLuc Pattyn19-May-18 12:04 
AnswerRe: coloring a cell via datagridview cellformatting event Pin
OriginalGriff19-May-18 19:55
mveOriginalGriff19-May-18 19:55 
AnswerRe: coloring a cell via datagridview cellformatting event Pin
leone24-May-18 11:13
leone24-May-18 11:13 
QuestionI want to read a value from a gridview cell using button event, something i'm not getting right here. Pin
Ngqulunga19-May-18 2:02
Ngqulunga19-May-18 2:02 
Questioni need to save me textbox data to separate line in notepad Pin
Mohamed Fahad M18-May-18 23:41
Mohamed Fahad M18-May-18 23:41 
AnswerRe: i need to save me textbox data to separate line in notepad Pin
OriginalGriff18-May-18 23:59
mveOriginalGriff18-May-18 23:59 
That's harder than you might think!
The problem is that text files don't have "lines" in the way you think of them: they just contain human readable characters one of which is interpreted by some - but not all - applications as an "end of line" character.
So you can't "write to line 2" because it isn't at a fixed place - where line two starts is immediately after the end of line character indicating the end of line one. And you can't "insert" to a text file, as when you write it will overwrite the existing characters.

So instead of that, read all the lines from your file when your app starts:
C#
private string[] lines;
...
lines = FileReadAllLines(pathToFile);
Then when you want to change line 1:
C#
lines[0] = line1.Text;
File.WriteAllLines(pathToFile, lines);
And the same for line 2:
C#
lines[1] = line2.Text;
File.WriteAllLines(pathToFile, lines);


BTW: Do yourself a favour, and stop using Visual Studio default names for everything - you may remember that "TextBox8" is the mobile number today, but when you have to modify it in three weeks time, will you then? Use descriptive names - "tbMobileNo" for example - and your code becomes easier to read, more self documenting, easier to maintain - and surprisingly quicker to code because Intellisense can get to to "tbMobile" in three keystrokes, where "TextBox8" takes thinking about and 8 keystrokes...
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...
AntiTwitter: @DalekDave is now a follower!


modified 19-May-18 11:33am.

AnswerRe: i need to save me textbox data to separate line in notepad Pin
Dave Kreskowiak20-May-18 5:33
mveDave Kreskowiak20-May-18 5:33 
QuestionMy code is not calculating correctly... I just need an extra pair of eyes to help me see what I am missing. Please help Pin
Member 1383451318-May-18 21:59
Member 1383451318-May-18 21:59 
AnswerRe: My code is not calculating correctly... I just need an extra pair of eyes to help me see what I am missing. Please help Pin
OriginalGriff18-May-18 22:00
mveOriginalGriff18-May-18 22:00 
AnswerRe: My code is not calculating correctly... I just need an extra pair of eyes to help me see what I am missing. Please help Pin
Richard MacCutchan18-May-18 23:45
mveRichard MacCutchan18-May-18 23:45 
AnswerRe: My code is not calculating correctly... I just need an extra pair of eyes to help me see what I am missing. Please help Pin
Implements Master Yoda21-May-18 4:34
Implements Master Yoda21-May-18 4:34 
QuestionQuestion in principal regarding writing an Outlook Plugin Pin
Jim60718-May-18 0:35
Jim60718-May-18 0:35 
AnswerRe: Question in principal regarding writing an Outlook Plugin Pin
Eddy Vluggen18-May-18 1:23
professionalEddy Vluggen18-May-18 1:23 
GeneralRe: Question in principal regarding writing an Outlook Plugin Pin
Jim60718-May-18 1:39
Jim60718-May-18 1:39 
GeneralRe: Question in principal regarding writing an Outlook Plugin Pin
Eddy Vluggen18-May-18 13:13
professionalEddy Vluggen18-May-18 13:13 
AnswerRe: Question in principal regarding writing an Outlook Plugin Pin
Gerry Schmitz18-May-18 8:14
mveGerry Schmitz18-May-18 8:14 
QuestionApp pool is crashing due to memory leakage Pin
Anoop Mehra17-May-18 18:22
Anoop Mehra17-May-18 18:22 
GeneralRe: App pool is crashing due to memory leakage Pin
Randor 17-May-18 18:45
professional Randor 17-May-18 18:45 
AnswerRe: App pool is crashing due to memory leakage Pin
OriginalGriff17-May-18 20:04
mveOriginalGriff17-May-18 20:04 
GeneralRe: App pool is crashing due to memory leakage Pin
Anoop Mehra17-May-18 22:59
Anoop Mehra17-May-18 22:59 
GeneralRe: App pool is crashing due to memory leakage Pin
OriginalGriff17-May-18 23:26
mveOriginalGriff17-May-18 23:26 
Questionc# array Pin
swathiii15-May-18 21:00
swathiii15-May-18 21:00 
SuggestionRe: c# array Pin
Richard MacCutchan15-May-18 21:30
mveRichard MacCutchan15-May-18 21:30 

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.