VBA可以从.txt文件中删除一行

我有一个文本文件,其中包含:

Date, Price 3/12/2015, 755 3/13/2015, 1087 

我有一些代码插入到这个文本文件的行,有时我不得不插入更正date。 在这个例子中,假设我想要的2015年3月12日的实际价格是650而不是755.有没有办法删除755行并在2015年3月12日650插入一行,以便新文件看起来喜欢:

 Date, Price 3/12/2015, 650 3/13/2015, 1087 

这里是我用来写入文本文件的代码:

 FilePath = "c:\desktop\path.txt" Set oFile = fso.OpenTextFile(FilePath, 8, True) oFile.WriteLine Range("A13").Text & "," & Range("b13").Value 

谢谢。