09-29-2020
02:32 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
09-29-2020
02:32 AM
@RoyWickrama_RWEI (@GeorgK ) Instead of
System.IO.File.AppendText(oTextSave)
try
System.IO.File.CreateText(oTextSave)
According to this microsoft API article, :
Creates or opens a file for writing UTF-8 encoded text. If the file already exists, its contents are overwritten.