CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: SummiRS

Search: Search took 0.02 seconds.

  1. Re: addin word document in c# - template style - crash?

    Hello,

    This guide: How to Set Word Tablet Style may be helpful for you. Have a look!
  2. Re: visual basic express read/write to excel question

    Write Excel:


    sheet.Range("B1").Text = "XYZ"

    Read Excel:


    sheet.Range("E1").Value
  3. Replies
    5
    Views
    12,699

    Re: How to read / write Excel file using C#?

    Workbook book = new Workbook();
    book.LoadFromFile("..\\..\\test.xlsx",ExcelVersion.Version97to2003);
    book.Worksheets[0].Range["A7"].Value = "abc";

    I use an Excel library...
  4. Replies
    1
    Views
    2,407

    Re: Compare Paragraph Styles

    How about method this post shows?

    http://janewdaisy.wordpress.com/2012/07/18/how-to-manage-headings-in-word-document-with-cvb-net/

    Hope helpful!
  5. Replies
    7
    Views
    38,484

    Re: EXPORT DATAGRID TO PDF in C#/Asp.Net

    Hello,

    How about method in this tip (http://www.codeproject.com/Tips/190144/Export-Database-to-Excel-PDF-HTML-RTF-XML-etc-for-.aspx)?

    I hope that you can get some suggestions from it.
  6. Re: Export data from Microsoft VB.Net to Excel or Access

    Hello,
    How about the following code:


    Dim connString As String = "DataSource =.\SQLEXPRESSS;AttachDbFilename=|DataDirectory|\**.MDF;Integrated Security = True"
    Dim orderSql As String =...
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured