So I am able to write to a .txt file, but I would like to have the file names change depending on the date when the process is run. How would I do this?
Here is my current code:

VB Code:
  1. Dim oFile As System.IO.File
  2.         Dim oWrite As System.IO.StreamWriter
  3.         oWrite = oFile.CreateText("C:\New.txt")
  4.         oWrite.WriteLine("This is working great.")
  5.         oWrite.WriteLine()

Thanks