Click here to Skip to main content
15,896,111 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
CAn any one please provide me the solution for

Generating PDf from Multiple Excel sheet using VB.net

I am using below code nut it is not working:

VB
   Dim fileName As String = AppDomain.CurrentDomain.BaseDirectory & "WeeklyReport"
   Dim xlsApp = New Microsoft.Office.Interop.Excel.Application
  xlsApp.ScreenUpdating = False
   Dim xlsBook As Microsoft.Office.Interop.Excel.Workbook
    Dim paramOpenAfterPublish As Boolean = False
    Dim paramIncludeDocProps As Boolean = True
    Dim paramIgnorePrintAreas As Boolean = True
   Dim paramFromPage As Object = Type.Missing
     Dim paramToPage As Object = Type.Missing
    xlsBook = xlsApp.Workbooks.Open(fileName & ".xls", UpdateLinks:=False, ReadOnly:=False)

xlsBook.ExportAsFixedFormat(Microsoft.Office.Interop.Excel.XlFixedFormatType.xlTypePDF, fileName & ".pdf", Microsoft.Office.Interop.Excel.XlFixedFormatQuality.xlQualityStandard, paramIncludeDocProps, paramIgnorePrintAreas, paramFromPage, paramToPage, paramOpenAfterPublish)
 '    xlsBook.ExportAsFixedFormat(Microsoft.Office.Interop.Excel.XlFixedFormatType.xlTypePDF, fileName & ".pdf", Microsoft.Office.Interop.Excel.XlFixedFormatQuality.xlQualityStandard, Type.Missing, False, Type.Missing, Type.Missing, False, Type.Missing)
  xlsBook.Close(SaveChanges:=False)
    xlsApp.Quit()
Posted
Updated 28-Jun-13 0:33am
v3
Comments
Kschuler 27-Jun-13 17:04pm    
I added a code block to your question, but you have everything commented out. I'm not sure if some if commented out because you have really excluded it or not. Please click the Improve question and edit the code so we can see what you are really using. Also, you say "it's not working" but what does that mean? Are you getting an error? Is it outputting something you don't want? Please provide more information.

1 solution

Got the solution ..need to install saveAspdf for office 2007..
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900