How to export data to an excel file?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hello
I wanna export some data to an excel file, create and save it. Is that possible
my platform is wince 4.2, c#

thanks for your suggestions
-mic
 
thanks Kaim
But what is "comma separated values" format ? Is that means separated by "\n" or "\t"

thanks
-mi
 
Comma Separated Value (CSV) is a text based format where each field is
separated with a comma "," and any fields containing a comma are quoted for
example a snippet might look like this:-

Name,Age,Address
Fred,21,"1 Something Street, Somewhereville"
Mary,52,"The Larches, Therechester"

Often the field names are contained in the first line (though these are
optional).

Peter
 
One more question: what do we do if we want to set the style of each field in excel file? (color, font or something else
thanks again
-mic
 
You can't without an actual Excel file generator, which there isn't one for
the CF (yet anyway).

--
Chris Tacke, eMVP
Co-Founder and Advisory Board Member
www.OpenNETCF.org
---
Windows CE Product Manager
Applied Data Systems
www.applieddata.net


mic said:
One more question: what do we do if we want to set the style of each field
in excel file? (color, font or something else)
 
Back
Top