CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Jan 2006
    Posts
    64

    particular cell data font of a csv file to be bold

    Hi

    how to make a particular cell data of a csv file to be bold thru programming in c#.

    suppose i want to make bold of 3rd cell in csv file how would i make..

    Thanks in advance
    vinni

  2. #2
    Join Date
    Jun 2004
    Location
    Kashmir, India
    Posts
    6,808

    Re: particular cell data font of a csv file to be bold

    CSV Files are not formatted files. They are just plain text files. You cannot change the formatting.

  3. #3
    Join Date
    Nov 2002
    Location
    .NET 3.5 VS2008
    Posts
    1,039

    Re: particular cell data font of a csv file to be bold

    It should be possible to create an Excel document programmatically and do any formatting in there. With regards to the Excel you can create using ADO.NET or through automating Excel. I think automating Excel will give you the best chance of formatting the document. As Shuja Ali mentioned a CSV is just a plain text file in which the data is separated by commas. No special formatting in there...

  4. #4
    Join Date
    Jan 2006
    Posts
    64

    Re: particular cell data font of a csv file to be bold

    hi

    Thank you

    i was also thinking that csv files cannot be formated but i was not sure.

    thanks
    vinni

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured