ByteScout Invoice Parser SDK - VB.NET - Read Simple Invoice - ByteScout

ByteScout Invoice Parser SDK – VB.NET – Read Simple Invoice

  • Home
  • /
  • Articles
  • /
  • ByteScout Invoice Parser SDK – VB.NET – Read Simple Invoice

How to read simple invoice in VB.NET and ByteScout Invoice Parser SDK

This code in VB.NET shows how to read simple invoice with this how to tutorial

The sample shows steps and algorithm of how to read simple invoice and how to make it work in your VB.NET application. ByteScout Invoice Parser SDK can read simple invoice. It can be used from VB.NET. ByteScout Invoice Parser SDK is the SDK for automatic invoice parsing and data extraction. Thousands of companies are supported out of the box! Detects and extracts a company name, invoice number, date, total amount to be paid and other fields. Constantly updated database of supported invoices. Batch processing is supported. Outputs JSON, CSV, XML data and can be integrated with other apps and tools.

This rich sample source code in VB.NET for ByteScout Invoice Parser SDK includes the number of functions and options you should do calling the API to read simple invoice. Follow the instructions from the scratch to work and copy the VB.NET code. Detailed tutorials and documentation are available along with installed ByteScout Invoice Parser SDK if you’d like to dive deeper into the topic and the details of the API.

Our website provides trial version of ByteScout Invoice Parser SDK for free. It also includes documentation and source code samples.

On-demand (REST Web API) version:
 Web API (on-demand version)

On-premise offline SDK for Windows:
 60 Day Free Trial (on-premise)

Module1.vb
      
Imports ByteScout.InvoiceParser ' This example demonstrates invoice data parsing to JSON and YAML formats. Module Module1 Sub Main() Dim inputDocument1 As String = ".\DigitalOcean.pdf" Dim inputDocument2 As String = ".\AmazonAWS.pdf" ' Create InvoiceParser instance Using invoiceParser As New InvoiceParser("demo", "demo") Console.WriteLine({code}quot;Parsing ""{inputDocument1}""...") Console.WriteLine() ' Parse invoice data in JSON format Dim jsonString As String = invoiceParser.ParseDocument(inputDocument1, OutputFormat.JSON) ' Display parsed data in console Console.WriteLine("Parsing results in JSON format:") Console.WriteLine() Console.WriteLine(jsonString) Console.WriteLine() Console.WriteLine({code}quot;Parsing ""{inputDocument2}""...") Console.WriteLine() ' Parse invoice data in YAML format Dim yamlString As String = invoiceParser.ParseDocument(inputDocument2, OutputFormat.YAML) ' Display parsed data in console Console.WriteLine("Parsing results in YAML format:") Console.WriteLine() Console.WriteLine(yamlString) End Using Console.WriteLine() Console.WriteLine("Press any key to continue...") Console.ReadLine() End Sub End Module

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Invoice Parser SDK Home Page

Explore ByteScout Invoice Parser SDK Documentation

Explore Samples

Sign Up for ByteScout Invoice Parser SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

VIDEO

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Invoice Parser SDK Home Page

Explore ByteScout Invoice Parser SDK Documentation

Explore Samples

Sign Up for ByteScout Invoice Parser SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

prev
next