I am having a datagridview where the content of that datagridview will be from my sample text file. When i click on load i will have the data from sample.txt and that data in that text file is shown in the datagridview. I will have a checkbox column in my datagridview. If the user checks i will select the row and when user clicks delete button i would like to delete that text from the text file.

Suppose my text is as follows alt text

If i click on the check box of first row and click on delete i would like to delete that text from text file

link|improve this question

No offence, but is this for homework or are you just too lazy to code it yourself? – Adrian Grigore Dec 31 '10 at 12:12
It is not a home work for me i am trying it myself – User Dec 31 '10 at 12:14
Did my answer help for your problem – ratty Dec 31 '10 at 12:21
In this case I'd recommend working through a beginner's book on .NET development. You are going to make progress much faster that way. SO is great if you have any specific questions, but you do need to have at least a minimal set of programming skills first if you want to make any progress... – Adrian Grigore Dec 31 '10 at 12:22
I have not worked on WINFORMS so i came up with this issue – User Dec 31 '10 at 12:33
feedback

2 Answers

up vote 0 down vote accepted

textfiles - How to delete a line from a text file in C#? - Stack ...

How to delete a line from a text file in C#?

See this link .

And some comments from me Here.

Read the all lines search the text u want and delete that text from list and write it in text file.

link|improve this answer
feedback

How about using the Text OBDC or OLE DB to access the text file contents?

You will have to:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.