ByteScout PDF SDK - VBScript and VB6 - Use Radio Button in PDF form - ByteScout

ByteScout PDF SDK – VBScript and VB6 – Use Radio Button in PDF form

  • Home
  • /
  • Articles
  • /
  • ByteScout PDF SDK – VBScript and VB6 – Use Radio Button in PDF form

How to use radio button in PDF form in VBScript and VB6 using ByteScout PDF SDK

Tutorial on how to use radio button in PDF form in VBScript and VB6

The documentation is designed to help you to implement the features on your side. ByteScout PDF SDK is the pdf library that can create, update and modify PDF files. Supports text with fonts and style selections, layers, form fields, drawing lines and objects, automatic tables, images. Can be used to create and fill pdf forms. It can be used to use radio button in PDF form using VBScript and VB6.

The SDK samples like this one below explain how to quickly make your application do use radio button in PDF form in VBScript and VB6 with the help of ByteScout PDF SDK. Follow the instructions from the scratch to work and copy the VBScript and VB6 code. This basic programming language sample code for VBScript and VB6 will do the whole work for you to use radio button in PDF form.

You can download free trial version of ByteScout PDF SDK from our website to see and try many others source code samples for VBScript and VB6.

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

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

RadioButtons.vbs
      
' This example demonstrates how to create radio buttons. ' Create Bytescout.PDF.Document object Set pdfDocument = CreateObject("Bytescout.PDF.Document") pdfDocument.RegistrationName = "demo" pdfDocument.RegistrationKey = "demo" Set comHelpers = pdfDocument.ComHelpers ' Add page Set page1 = comHelpers.CreatePage(comHelpers.PAPERFORMAT_A4) pdfDocument.Pages.Add(page1) Set timesFont = comHelpers.CreateStandardFont(comHelpers.STANDARDFONTS_TIMES, 12) Set blackBrush = comHelpers.CreateSolidBrush(comHelpers.CreateColorGray(0)) ' Add a group of radio buttons Set radioButton1 = comHelpers.CreateRadioButton(20, 20, 15, 15, "group1", "value1") Set radioButton2 = comHelpers.CreateRadioButton(20, 40, 15, 15, "group1", "value2") page1.Annotations.Add(radioButton1) page1.Annotations.Add(radioButton2) ' Add labels page1.Canvas.DrawString "Value 1.1", (timesFont), (blackBrush), 40, 20 page1.Canvas.DrawString "Value 1.2", (timesFont), (blackBrush), 40, 40 ' Add another independent group of radio buttons Set radioButton3 = comHelpers.CreateRadioButton(120, 20, 15, 15, "group2", "value3") Set radioButton4 = comHelpers.CreateRadioButton(120, 40, 15, 15, "group2", "value4") page1.Annotations.Add(radioButton3) page1.Annotations.Add(radioButton4) ' Add labels page1.Canvas.DrawString "Value 2.1", (timesFont), (blackBrush), 140, 20 page1.Canvas.DrawString "Value 2.2", (timesFont), (blackBrush), 140, 40 ' Save document to file pdfDocument.Save("result.pdf") ' Open document in default PDF viewer app Set shell = CreateObject("WScript.Shell") shell.Run "result.pdf", 1, false

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout PDF SDK Home Page

Explore ByteScout PDF SDK Documentation

Explore Samples

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

Explore ByteScout PDF SDK Documentation

Explore Samples

Sign Up for ByteScout PDF SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next