ByteScout Premium Suite - VB.NET - Read form values from w-9 form with pdf sdk - ByteScout

ByteScout Premium Suite – VB.NET – Read form values from w-9 form with pdf sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout Premium Suite – VB.NET – Read form values from w-9 form with pdf sdk

How to read form values from w 9 form with pdf sdk in VB.NET with ByteScout Premium Suite

Learn to read form values from w 9 form with pdf sdk in VB.NET

The code displayed below will guide you to install an VB.NET app to read form values from w 9 form with pdf sdk. ByteScout Premium Suite is the bundle that includes twelve SDK products from ByteScout including tools and components for PDF, barcodes, spreadsheets, screen video recording and you can use it to read form values from w 9 form with pdf sdk with VB.NET.

The following code snippet for ByteScout Premium Suite works best when you need to quickly read form values from w 9 form with pdf sdk in your VB.NET application. Just copy and paste the code into your VB.NET application’s code and follow the instructions. This basic programming language sample code for VB.NET will do the whole work for you to read form values from w 9 form with pdf sdk.

ByteScout provides the free trial version of ByteScout Premium Suite along with the 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)

Program.vb
      
Imports Bytescout.PDF ''' <summary> ''' This example demonstrates how to get PDF form values programmatically. ''' </summary> Class Program Shared Sub Main() ' Load PDF form Dim pdfDocument = New Document("W-9_Filled.pdf") pdfDocument.RegistrationName = "demo" pdfDocument.RegistrationKey = "demo" ' Read from first page Dim page = pdfDocument.Pages(0) Console.WriteLine("W-9 Form values are as follows") ' Name Dim cName = DirectCast(page.Annotations("f1_1[0]"), EditBox).Text Console.WriteLine({code}quot;Name: {cName}") ' Business Address Dim cAddress = DirectCast(page.Annotations("f1_2[0]"), EditBox).Text Console.WriteLine({code}quot;Address: {cAddress}") ' Cleanup pdfDocument.Dispose() Console.WriteLine() Console.WriteLine("Press any key to exit....") Console.ReadLine() End Sub End Class

ON-PREMISE OFFLINE SDK

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

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 Premium Suite Home Page

Explore ByteScout Premium Suite Documentation

Explore Samples

Sign Up for ByteScout Premium Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next