The documentation is designed for a specific purpose to help you to apply the features on your side. ByteScout Data Extraction Suite: the bundle that includes three SDK tools for data extraction from PDF, scans, images and from spreadsheets: PDF Extractor SDK, Data Extraction SDK, Barcode Reader SDK. It can import from 2d array with spreadsheet sdk in VB.NET.
Want to quickly learn? This fast application programming interfaces of ByteScout Data Extraction Suite for VB.NET plus the guidelines and the code below will help you quickly learn how to import from 2d array with spreadsheet sdk. Follow the instructions from scratch to work and copy the VB.NET code. 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.
The trial version of ByteScout Data Extraction Suite can be downloaded for free from our website. It also includes source code samples for VB.NET and other programming languages.
On-demand (REST Web API) version:
Web API (on-demand version)
On-premise offline SDK for Windows:
60 Day Free Trial (on-premise)
Imports System.IO
Imports System.Diagnostics
Imports Bytescout.Spreadsheet
Module Module1
Sub Main()
Const fileName As String = "VBNetImportFrom2DArray.xls"
'Create a new spreadsheet
Dim spreadsheet As Bytescout.Spreadsheet.Spreadsheet = New Bytescout.Spreadsheet.Spreadsheet
'Get the data from the 2D array that we want to import
Dim stockPrices(,) As String = Get2DArray()
'Import data into spreadheet
spreadsheet.ImportFrom2DArray(stockPrices)
'Save the spreadsheet
If (File.Exists(fileName)) Then
File.Delete(fileName)
End If
spreadsheet.SaveAs(fileName)
'Close spreadsheet
spreadsheet.Close()
'Open the spreadsheet
Process.Start(fileName)
End Sub
''' <summary>
''' Creates a 2D array of stock prices
''' </summary>
''' <returns>A 2D array of stock prices</returns>
Function Get2DArray() As String(,)
Dim stockPrices(10, 2) As String
stockPrices(0, 0) = "AAPL"
stockPrices(0, 1) = "24,89"
stockPrices(1, 0) = "AMZN"
stockPrices(1, 1) = "27,95"
stockPrices(2, 0) = "DELL"
stockPrices(2, 1) = "12,68"
stockPrices(3, 0) = "EBAY"
stockPrices(3, 1) = "57,27"
stockPrices(4, 0) = "GOOG"
stockPrices(4, 1) = "28,98"
stockPrices(5, 0) = "IBM "
stockPrices(5, 1) = "24,00"
stockPrices(6, 0) = "INTC"
stockPrices(6, 1) = "12,24"
stockPrices(7, 0) = "MSFT"
stockPrices(7, 1) = "37,85"
stockPrices(8, 0) = "SNE "
stockPrices(8, 1) = "39,91"
stockPrices(9, 0) = "YHOO"
stockPrices(9, 1) = "78,72"
Return stockPrices
End Function
End Module
60 Day Free Trial or Visit ByteScout Data Extraction Suite Home Page
Explore ByteScout Data Extraction Suite Documentation
Explore Samples
Sign Up for ByteScout Data Extraction Suite Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
60 Day Free Trial or Visit ByteScout Data Extraction Suite Home Page
Explore ByteScout Data Extraction Suite Documentation
Explore Samples
Sign Up for ByteScout Data Extraction Suite Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
also available as: