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

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

  • Home
  • /
  • Articles
  • /
  • ByteScout PDF 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 PDF Suite

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

Quickly learn how to read form values from 1099 int form with pdf sdk in VB.NET with this sample source code. ByteScout PDF Suite is the set that includes 6 SDK products to work with PDF from generating rich PDF reports to extracting data from PDF documents and converting them to HTML. This bundle includes PDF (Generator) SDK, PDF Renderer SDK, PDF Extractor SDK, PDF to HTML SDK, PDF Viewer SDK and PDF Generator SDK for Javascript and you can use it to read form values from 1099 int form with pdf sdk with VB.NET.

This prolific sample source code in VB.NET for ByteScout PDF Suite contains various functions and other necessary options you should do calling the API to read form values from 1099 int form with pdf sdk. 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.

ByteScout PDF Suite free trial version is available on our website. VB.NET and other programming languages are supported.

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

Explore ByteScout PDF Suite Documentation

Explore Samples

Sign Up for ByteScout PDF 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 PDF Suite Home Page

Explore ByteScout PDF Suite Documentation

Explore Samples

Sign Up for ByteScout PDF Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next