ByteScout Data Extraction Suite - VB.NET - Read date from cell with spreadsheet sdk - ByteScout

ByteScout Data Extraction Suite – VB.NET – Read date from cell with spreadsheet sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout Data Extraction Suite – VB.NET – Read date from cell with spreadsheet sdk

How to read date from cell with spreadsheet sdk in VB.NET using ByteScout Data Extraction Suite

How to write a robust code in VB.NET to read date from cell with spreadsheet sdk with this step-by-step tutorial

The code displayed below will guide you to install an VB.NET app to read date from cell with spreadsheet sdk. ByteScout Data Extraction Suite is 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 read date from cell with spreadsheet sdk in VB.NET.

Want to save time? You will save a lot of time on writing and testing code as you may just take the VB.NET code from ByteScout Data Extraction Suite for read date from cell with spreadsheet sdk below and use it in your application. Simply copy and paste in your VB.NET project or application you and then run your app! Complete and detailed tutorials and documentation are available along with installed ByteScout Data Extraction Suite if you’d like to learn more about the topic and the details of the API.

You can download free trial version of ByteScout Data Extraction Suite from our website to see and try many others source code samples for VB.NET.

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

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

Module1.vb
      
Imports Bytescout.Spreadsheet Imports System.IO Module Module1 Sub Main() ' Create new Spreadsheet Dim document As New Spreadsheet() document.LoadFromFile("Sample.xls") ' Get worksheet by name Dim worksheet As Worksheet = document.Workbook.Worksheets.ByName("Sheet1") ' Check dates For i As Integer = 0 To 3 ' Set current cell Dim currentCell As Cell = worksheet.Cell(i, 0) If currentCell.ValueDataTypeByNumberFormatString = Constants.NumberFormatType.DateTime Then ' read date time Dim datet As DateTime = currentCell.ValueAsDateTime() ' Write to console Console.WriteLine("{0}", datet.ToShortDateString()) Else ' Write message Console.WriteLine("cell does not contain date time value") End If Next ' Close document document.Close() ' Write message Console.Write("Press any key to continue...") ' Wait user input Console.ReadKey() End Sub End Module

ON-PREMISE OFFLINE SDK

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

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 Data Extraction Suite Home Page

Explore ByteScout Data Extraction Suite Documentation

Explore Samples

Sign Up for ByteScout Data Extraction Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next