Question:

VB6 + Writing info to text file

by  |  earlier

0 LIKES UnLike

 Tags:

   Report

1 ANSWERS


  1. Set objFSO = CreateObject("Scripting.FileSystemObject")
       strFileName = "Errorlist.txt"
       Set objFile = objFSO.CreateTextFile(strFileName, True)
       ' You can use the below example to write text to the file+
       objFile.Write "Enter Your Text Here"
       objFile.Close
       Set objFile = Nothing
       Set objFSO = Nothing

Question Stats

Latest activity: earlier.
This question has 1 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.