In a module I have the code :
DoCmd.TransferText acExportDelim, , cTablename, cOutFilename, True
The table cTablename has text fields that contains the £ sign. Using the above code the £ sign is converted to a œ symbol.
If I use the Export option within Accesss the £ signs are converted fine.
How can I export the £ sign within the VBA code ?
DoCmd.TransferText acExportDelim, , cTablename, cOutFilename, True
The table cTablename has text fields that contains the £ sign. Using the above code the £ sign is converted to a œ symbol.
If I use the Export option within Accesss the £ signs are converted fine.
How can I export the £ sign within the VBA code ?