I am tring to create a txt file and then inserting data into the file
i am able to create a file using the code:
System.Io.Cretefile("c:\New folder\ppp.txt")
Now how do I write a data into this file.
Please guide me !!
Printable View
I am tring to create a txt file and then inserting data into the file
i am able to create a file using the code:
System.Io.Cretefile("c:\New folder\ppp.txt")
Now how do I write a data into this file.
Please guide me !!
VB Code:
Dim SW as IO.StreamWriter=New StreamWriter("C:\New Folder\ppp.txt") SW.Writeline("bal bal bal...") ' SW.Close
Thats all you need to do in a very easy fashion
Ok i have done it Fine, tanku