I need to be able to use a period in my file name. I am getting my file name by using a field in my database. For some reason when I use TransferText (because I need it in Comma Delimited) it changes my period to a pound sign. Here is the code I am using, any help would be appreciated.
Private Sub Form_Close()
Dim Mycode As String
Mycode = Code
DoCmd.TransferText acExportDelim, "Evcor", "Evcor", ("c:\Working\" & Mycode & ".csv"
, True
End Sub
Private Sub Form_Close()
Dim Mycode As String
Mycode = Code
DoCmd.TransferText acExportDelim, "Evcor", "Evcor", ("c:\Working\" & Mycode & ".csv"
End Sub