I have made an application which can generate html page from access. The html codes are stored in table import and field name like L1,L2,L3.........
these field keep the html code. i have made a form called export which has a button name cmdExport. Export button can generate html page but the problem is when it create a html page it add some "" in the tag which is not needed in the html page.
can some one tell me how can I remove this "" (double quotes) from the html pages.
export buttons code:
Private Sub Export_Click()
DoCmd.TransferText acExportDelim, "", "import", "c:\file\test.htm", False
End Sub
which line i have to modify? or i have to write some additional codes here.
these field keep the html code. i have made a form called export which has a button name cmdExport. Export button can generate html page but the problem is when it create a html page it add some "" in the tag which is not needed in the html page.
can some one tell me how can I remove this "" (double quotes) from the html pages.
export buttons code:
Private Sub Export_Click()
DoCmd.TransferText acExportDelim, "", "import", "c:\file\test.htm", False
End Sub
which line i have to modify? or i have to write some additional codes here.