ByteScout simple and easy to understand tutorials are planned to describe the code for both VB.NET beginners and advanced programmers. What is ByteScout Premium Suite? It is the bundle that includes twelve SDK products from ByteScout including tools and components for PDF, barcodes, spreadsheets, screen video recording. It can help you to convert pdf to xls with pdf extractor sdk in your VB.NET application.
The following code snippet for ByteScout Premium Suite works best when you need to quickly convert pdf to xls with pdf extractor sdk in your VB.NET application. Just copy and paste the code into your VB.NET application’s code and follow the instructions. Applying VB.NET application mostly includes various stages of the software development so even if the functionality works please test it with your data and the production environment.
All these programming tutorials along with source code samples and ByteScout free trial version are available for download from our website.
On-demand (REST Web API) version:
Web API (on-demand version)
On-premise offline SDK for Windows:
60 Day Free Trial (on-premise)
Imports System.IO
Imports Bytescout.PDFExtractor
Imports System.Diagnostics
Class Program
Friend Shared Sub Main(args As String())
' Create Bytescout.PDFExtractor.XLSExtractor instance
Dim extractor As New XLSExtractor()
extractor.RegistrationName = "demo"
extractor.RegistrationKey = "demo"
File.Delete("output.xls")
' Load sample PDF document
extractor.LoadDocumentFromFile("sample3.pdf")
' Uncomment this line if you need all pages converted into a single worksheet:
'extractor.PageToWorksheet = False
' Set the output format to XLS
extractor.OutputFormat = SpreadseetOutputFormat.XLS
' Save the spreadsheet to file
extractor.SaveToXLSFile("output.xls")
' Cleanup
extractor.Dispose()
' Open result file in default associated application (for demo purposes)
Process.Start("output.xls")
End Sub
End Class
60 Day Free Trial or Visit ByteScout Premium Suite Home Page
Explore ByteScout Premium Suite Documentation
Explore Samples
Sign Up for ByteScout Premium Suite Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
60 Day Free Trial or Visit ByteScout Premium Suite Home Page
Explore ByteScout Premium Suite Documentation
Explore Samples
Sign Up for ByteScout Premium Suite Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
also available as: