Hi guys,
I need your help with following issue:
In my windows application form,I added text files to my resources, but I could not read, add data to those files. Can You explain me the procedure of doing that?
Thanx!
Hi guys,
I need your help with following issue:
In my windows application form,I added text files to my resources, but I could not read, add data to those files. Can You explain me the procedure of doing that?
Thanx!
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question.
Hirendra SisodiyaPosted Apr 19, 2010, 2:20 AM
Suppose you add one text file GetRecords.txt in resoureces.resx of windowApplication1
you can read this text file as :
string str = WindowsApplication1.Properties.Resources.Get_Records;
thanks
Please mark as answere if it helps
DudePosted Apr 19, 2010, 12:59 PM
Thank You much for attention and help, Hirendra!
By the way, If I use this text file as resources(data) in my application, can I use it for storing, modifying and retrieving data from?