ByteScout Premium Suite - VBScript - Use radio button in pdf form with pdf sdk - ByteScout

ByteScout Premium Suite – VBScript – Use radio button in pdf form with pdf sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout Premium Suite – VBScript – Use radio button in pdf form with pdf sdk

How to use radio button in pdf form with pdf sdk in VBScript with ByteScout Premium Suite

If you want to learn more then this tutorial will show how to use radio button in pdf form with pdf sdk in VBScript

These source code samples are assembled by their programming language and functions they apply. Want to use radio button in pdf form with pdf sdk in your VBScript app? ByteScout Premium Suite is designed for it. ByteScout Premium Suite is the set that includes 12 SDK products from ByteScout including tools and components for PDF, barcodes, spreadsheets, screen video recording.

These VBScript code samples for VBScript guide developers to speed up coding of the application when using ByteScout Premium Suite. IF you want to implement the functionality, just copy and paste this code for VBScript below into your code editor with your app, compile and run your application. Further improvement of the code will make it more robust.

Our website gives trial version of ByteScout Premium Suite 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)

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 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