i use objStreamWriter for writing data to an excel sheet.
objStreamWriter = New StreamWriter(objFileStream)
objStreamWriter.WriteLine("title" & chr(9) & "name")
etc ...
This works perfect.
But is it also possible to give a cell a color, or to make the text sent to
a cell bold?
Thanks
Luc
Which format do you use ?
For now it seems you are using CSV which allows only to import data. If you
want to use formatting you could use HTML (Excel is able to import HTML
tables), XML (either the old xml format or what is now the native format),
use automation to control Excel (if client side)) or use a third party
product such as Aspose.Cells...
Basically it seems you'll have to redesign how data are exported...
--
Patrice
"Luc" <dr...@sxxx.nl> a �crit dans le message de
news:e6LKMVLi...@TK2MSFTNGP06.phx.gbl...
Imagine all i want is to send "ok" but in bold.
what do i have actually to change to this code for that?
objStreamWriter = New StreamWriter(objFileStream)
objStreamWriter.WriteLine("ok" )
...
that's all i want to know.
Thanks
"Patrice" <http://scribe-en.blogspot.com/> schreef in bericht
news:OnY$XfMiKH...@TK2MSFTNGP06.phx.gbl...
If yes, this format only allows to define values to be imported and not how
the font or the cell should look like (so you'll have either to do this as
another step or use a format that allows to define both data and
appearance)...
--
Patrice
"Luc" <dr...@sxxx.nl> a �crit dans le message de
news:eRV2l2Mi...@TK2MSFTNGP04.phx.gbl...