I am new to VB 2005, and am trying to update code from an older program of mine.
How would I convert this to 2005?
vb Code:
Dim intFileNum As Integer intFileNum = FreeFile() ' Assign available File Number strFile = Format(Date, "mm-dd-yyyy") ' Set Base File Format strFile = App.Path & "\" + strFile + "-Leaders.txt" ' Create Log File name Open strFile For Output As #intFileNum ' Open File for Output Write #intFileNum, strSource ' Write source code Close #intFileNum ' Close File




Reply With Quote