タイトル | : 見つけました!!! |
記事No | : 1679 |
投稿日 | : 2005/05/11(Wed) 18:04 |
投稿者 | : はせどん |
[OSのVer]:Windows [VBのVer]:VB.NET > テキストファイルの操作についてはヘルプで File クラス以下を調べれば分かります。 > サンプルコードも載ってます。
るしぇさん ありがとうございます。解決しました
' This text is always added, making the file longer over time ' if it is not deleted. sw = File.AppendText(path) sw.WriteLine("This") sw.WriteLine("is Extra") sw.WriteLine("Text") sw.Flush() sw.Close()
|