if you are just writing to a normal txt file just use normal File create operations. string fname = "C:\\test.txt" using(StreamWriter sw = File.CreateText(fname)) { sw.WriteLine(data_to_be_written); }
I
ideru
@ideru
Posts
-
writing to txtfiles -
Property GridHello.. ive been searching and still can't find the answer. This might be a bit trivial for some, but am really confused why this is not working. I have a property grid, am using this to edit/display/manipulate a resource file actually. I've based my code on a C# sample resource Editor. Right now what am trying to do is to capture the double click event on the property grid. That is if a certain row has a double click event, i will retrieve the value on that row. Does anybody knows ?:confused: