ByteScout Premium Suite - VB.NET - Read form values from 1099-int form with pdf sdk - ByteScout

ByteScout Premium Suite – VB.NET – Read form values from 1099-int form with pdf sdk

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

How to read form values from 1099 int form with pdf sdk in VB.NET using ByteScout Premium Suite

Learn to read form values from 1099 int form with pdf sdk in VB.NET

An easy to understand sample source code to learn how to read form values from 1099 int form with pdf sdk in VB.NET 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 read form values from 1099 int form with pdf sdk in your VB.NET application.

The following code snippet for ByteScout Premium Suite works best when you need to quickly read form values from 1099 int form with pdf sdk in your VB.NET application. Simply copy and paste in your VB.NET project or application you and then run your app! 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.

Trial version of ByteScout Premium Suite is available for free. Source code samples are included to help you with your VB.NET app.

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("f1099int_filled.pdf") pdfDocument.RegistrationName = "demo" pdfDocument.RegistrationKey = "demo" ' Read from second page Dim page = pdfDocument.Pages(1) Console.WriteLine("F1099int_filled Form values are as follows") ' Is Void Dim lIsVoid = DirectCast(page.Annotations("c2_1[0]"), CheckBox).Checked Console.WriteLine({code}quot;Is Void: {lIsVoid}") ' Payer's info Dim cPayerInfo = DirectCast(page.Annotations("f2_1[0]"), EditBox).Text Console.WriteLine({code}quot;Payer Info: {cPayerInfo}") ' Payer's TIN Dim cPayerTin = DirectCast(page.Annotations("f2_2[0]"), EditBox).Text Console.WriteLine({code}quot;Payer TIN: {cPayerTin}") ' Recipient's TIN Dim cRecipientTin = DirectCast(page.Annotations("f2_4[0]"), EditBox).Text Console.WriteLine({code}quot;Recipient TIN: {cRecipientTin}") ' Street Address 1 Dim cStreetAddress1 = DirectCast(page.Annotations("f2_5[0]"), EditBox).Text Console.WriteLine({code}quot;Street Address - 1: {cStreetAddress1}") ' Street Address 2 Dim cStreetAddress2 = DirectCast(page.Annotations("f2_6[0]"), EditBox).Text Console.WriteLine({code}quot;Street Address - 2: {cStreetAddress2}") ' 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