Ok, after a little tinkering, I figured it out myself. Now, having seen how many people have looked at this post, below is the code I used. (In case anyone else is having the same issue)
Dim FileName As String
FileName = "C:Folder\File.csv"
Open FileName For Output As #1
Print #1, Info.Text
Close #1
The line of code that opens the "FileName" for output will actually create the file in the specified file destination, which you could add a common dialog function to handle. Either way, the only thing you need to do to create the .csv file is instead of putting .txt to create a text file, put .csv. This method does work fine, and will open in Microsoft Excel perfectly.