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

Search:

Type: Posts; User: Sliver.W

Search: Search took 0.03 seconds.

  1. Re: POI and setting cells to VerticalAlignment.MIDDLE

    Hi,I would suggest that you try the following code snippet to align text vertically wihtin a cell. It requires spire.xls.jar (free) to be referenced as a dependency.



    import com.spire.xls.*;
    ...
  2. Replies
    2
    Views
    3,207

    Re: data from excel to sql database?

    Hi, here is an article for your reference

    http://www.c-sharpcorner.com/blogs/import-and-export-data-from-excel-to-database
  3. Replies
    1
    Views
    5,612

    Re: Excel view to datagridview migration

    Hi, you may need a spreadsheet control that allows programmer to load and view Excel file in to Windows Forms. Check more details from following link:
    ...
  4. Re: Printing PDf files from a console application without any additional tools

    Print PDF in C# without using additional tools:



    //namespaces
    using System.Drawing.Printing;
    using System.Diagnostics;
    using System.Collections.Specialized;

    // print method
  5. Re: I need some help with this code for Microsoft Excel

    Hi,

    I am not quite clear about the reasons why your issue appears when emailing the excel file. but you could try some other solutions to re-size and insert images to Excel sheet. Here is an...
  6. Replies
    2
    Views
    854

    Re: Copy selected range between worksheets

    Hi, i am not clear how to achieve this with your code, but you could some other way to accomplish this task. Here is a fine solution based on spire. Hope it helps.=D




    Imports Spire.Xls
    ...
  7. Re: create a word doc file with formatting from asp.net and C#

    Try following sample code to create Word file and format the font in C#.




    using System.Drawing;
    using Spire.Doc;
    using Spire.Doc.Documents;

    namespace CreateWordWithFormatting
  8. Replies
    1
    Views
    1,239

    Re: program to modify excel file

    What kind of program did you create? Would you please show us what you have tried so far?

    For inserting data to an existing Excel file, you need to use Excel Interop or 3th party library similar...
  9. Re: Printing .DOCX documents W/O Word on Computer

    I believe you need to use 3rd party library to print Word file in .NET, check out this methods which does not require MS Word to be installed on your machine.

    Print a Word Programmatically in 5...
  10. Re: using winform application to open a word document from a sharepoint site

    Not familiar with sharepoint. But I do have done some research on how to open Word files in Windows Forms application. If you're also interested in this, take a look at this tutorails- Open and Close...
  11. Replies
    1
    Views
    1,008

    Re: Adding a Jpeg (BarCode)to a word Document

    Hello,

    Sorry that I can't figure out the specific issue in you code. But as I have searched on Google, I got another way to achieve this goal. AND I found this solution pretty easy. Here is...
  12. Replies
    6
    Views
    8,885

    Re: Deleting Excel Sheet

    I am using Spire.Xls, the worksheet can be easily deleted using sheet1.Remove(). In Microsoft.Office.Interop.Excel, just call worksheets(1).Delete() to remove the worksheet.

    regards
  13. Re: Barcode Professional 8.0 for ASP.NET just released!

    Hi

    Good news!I am currently working with barcode programming, in my situation ,I need to create barcode on PDF, Word and Excel. Would it be possiable for free version of your product? Please let...
  14. Re: Generating and Customizing barcode images in JasperReports

    Try free C# Barcode API, which enables you set barcode image borders, border colors, style, margins and width , and output image format can be Bitmap, JPG, PNG, EMF, TIFF, GIF and WMF.

    Hope it...
  15. Replies
    4
    Views
    6,594

    Re: How to convert HTML to TIFF in C#

    refer this post on Codeguru - http://forums.codeguru.com/showthread.php?367809-How-to-convert-html-to-tiff-using-C&p=2156903#post2156903

    Or try sample for converting Html to Image on MSDN

    kind...
  16. Re: Convert PDF to HTML or Image or PostScript Format and HTML to PDF Format using .N

    hi

    check this method provided by Spire.PDF class library for converting HTML to PDF in C#..



    HtmlConverter.Convert("http://www.wikipedia.org/", "HTMLtoPDF.pdf",

    ...
  17. Re: c# capturing Barcode from barcode reader question

    Hi,

    refer this article on C#Corner which definitely helps me generate and read barcode programmatically using C#....
  18. Re: c# capturing Barcode from barcode reader question

    Hi,

    read this article which definitely can be help you generate and barcode programmatically using C#.
    http://www.c-sharpcorner.com/UploadFile/dacca2/generate-barcode-using-spire-barcode-library/...
  19. Re: C#, Java and Ruby Code Samples for Creating PDF File from HTML in Cloud

    hi folks,

    I use the following code snippet to create PDF file from HTML ,check


    static void Main(string[] args)
    {
    HtmlConverter.Convert("http://www.wikipedia.org/",...
  20. Replies
    3
    Views
    8,716

    Re: How to convert html to tiff using C#?

    try this


    Document document = new Document();
    document.LoadFromFile(@"D:\test.html", FileFormat.Html, XHTMLValidationType.None);

    Image image = document.SaveToImages(0, ImageType.Bitmap);...
  21. Re: How to print images, pictures, texts and high quality barcodes using VB.NET or C#

    hi macjone,

    refer-http://freebarcode.codeplex.com/

    I found this when I was engaged in my project with barcode generating and reading.It provides C# and also VB.NET solution.And what impressed...
  22. Re: C# and PHP Code Samples for Replacing Multiple Texts inside PDF File in Cloud

    hi,

    I'm programming with C# ,and I got a problem with below codes.Can someone help me out?

    //open document
    Document pdfDocument = new Document(“input.pdf”);
    //create TextAbsorber object...
  23. Re: Copy Data From OdbcConnection to SQLStatment Thru C# Code

    Hi,

    Sorry that I can't figure out what's happening with your codes since Im toally a beginner with C#.
    But I'd like to share you with some useful site like http://exportdata.codeplex.com/,which...
Results 1 to 23 of 23





Click Here to Expand Forum to Full Width

Featured