Hello,
I have a VB.NET program that converts an XML file to CSV.
When I try to import the CSV into Oracle or even Access it chokes on the first row, but does import the remaining rows into a table.
It seems there is a type conversion character in position column 1,row 1, that is not visible when opening the file in Linux VI or notepad.
Here is my code for the writeline-
+++++++++++++++++++++
While Not m_xmlr.EOF
myfile.WriteLine(FileDate3 & "," & campaignValue & "," & kwsiteValue & "," & kwsitetypeValue & "," & campstatusValue & "," & impsValue & "," & clicksValue & "," & cost & "," & pos)
End While
+++++++++++++++++++++
do i need a vbcrlf or something like that at the end of the string??
any way to find out what the character is?
Any ideas are greatly appreciated.
thanks
Ron-Netshops.com