Sample source code below will show you how to cope with a difficult task like parse multipage table in VB.NET. Want to parse multipage table in your VB.NET app? ByteScout Document Parser SDK is designed for it. ByteScout Document Parser SDK is the template based data extraction engine can process thousands and millions of documents per day based on templates. Can work online and offline for privacy focused tasks. Templates can be supported and updated without any programming or technical knowledge required. Output is generated in JSON, CSV, XML and custom format if required.
Fast application programming interfaces of ByteScout Document Parser SDK for VB.NET plus the instruction and the code below will help you quickly learn how to parse multipage table. Follow the instructions from the scratch to work and copy the VB.NET code. Enjoy writing a code with ready-to-use sample VB.NET codes.
Free trial version of ByteScout Document Parser SDK is available on our website. Documentation and source code samples are included.
On-demand (REST Web API) version:
Web API (on-demand version)
On-premise offline SDK for Windows:
60 Day Free Trial (on-premise)
Imports ByteScout.DocumentParser ' This example demonstrates parsing of multipage tables in two different approaches. ' See comments in the code of templates. Module Module1 Sub Main() Dim inputDocument As String = ".\MultiPageTable.pdf" Dim template1 As String = ".\MultiPageTable-template1.yml" Dim template2 As String = ".\MultiPageTable-template2.yml" Using documentParser As New DocumentParser("demo", "demo") Console.WriteLine("Loading template 1...") documentParser.AddTemplate(template1) Console.WriteLine("Template 1 loaded.") Console.WriteLine() Console.WriteLine({code}quot;Parsing ""{inputDocument}""...") Console.WriteLine() ' Parse document data in JSON format documentParser.ParseDocument(inputDocument, "result1.json", OutputFormat.JSON) Console.WriteLine("Parsing results saved to `result1.json`.") Console.WriteLine() End Using Using documentParser As New DocumentParser("demo", "demo") Console.WriteLine("Loading template 2...") documentParser.AddTemplate(template2) Console.WriteLine("Template 2 loaded.") Console.WriteLine() Console.WriteLine({code}quot;Parsing ""{inputDocument}""...") Console.WriteLine() ' Parse document data in JSON format documentParser.ParseDocument(inputDocument, "result2.json", OutputFormat.JSON) Console.WriteLine("Parsing results saved to `result2.json`.") Console.WriteLine() End Using Console.WriteLine() Console.WriteLine("Press any key to continue...") Console.ReadLine() End Sub End Module
60 Day Free Trial or Visit ByteScout Document Parser SDK Home Page
Explore ByteScout Document Parser SDK Documentation
Explore Samples
Sign Up for ByteScout Document Parser SDK Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
60 Day Free Trial or Visit ByteScout Document Parser SDK Home Page
Explore ByteScout Document Parser SDK Documentation
Explore Samples
Sign Up for ByteScout Document Parser SDK Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples