The sample source codes on this page shows how to parse multipage table in VBScript and VB6. Want to parse multipage table in your VBScript and VB6 app? ByteScout Document Parser SDK is designed for it. ByteScout Document Parser SDK is the robost offline data extraction platform for template based data extraction and processing. Supports high load with millions of documents as input. Templates can be quickly created and updated with no special technical knowledge required.
The SDK samples like this one below explain how to quickly make your application do parse multipage table in VBScript and VB6 with the help of ByteScout Document Parser SDK. In your VBScript and VB6 project or application you may simply copy & paste the code and then run your app! Use of ByteScout Document Parser SDK in VBScript and VB6 is also explained in the documentation included along with the product.
Trial version of ByteScout Document Parser SDK is available for free. Source code samples are included to help you with your VBScript and VB6 app.
On-demand (REST Web API) version:
Web API (on-demand version)
On-premise offline SDK for Windows:
60 Day Free Trial (on-premise)
' This example demonstrates parsing of multipage tables in two different approaches. ' See comments in the code of templates. inputDocument = "..\..\MultiPageTable.pdf" template1 = "..\..\_Sample Templates\MultiPageTable-template1.yml" template2 = "..\..\_Sample Templates\MultiPageTable-template2.yml" ' Create DocumentParser object Set documentParser = CreateObject("Bytescout.DocumentParser.DocumentParser") documentParser.RegistrationName = "demo" documentParser.RegistrationKey = "demo" ' Loading template... documentParser.AddTemplate(template1) ' Parse document data in JSON format documentParser.ParseDocument inputDocument, "result1.json", 0 Set documentParser = Nothing ' Create DocumentParser object Set documentParser = CreateObject("Bytescout.DocumentParser.DocumentParser") documentParser.RegistrationName = "demo" documentParser.RegistrationKey = "demo" ' Loading template... documentParser.AddTemplate(template2) ' Parse document data in JSON format documentParser.ParseDocument inputDocument, "result2.json", 0 WScript.Echo "Parsed data saved as 'result1.json' and 'result2.json'." Set documentParser = Nothing
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