Spreadsheet SDK for Programming - Page 29 of 40 - ByteScout
Announcement
Our ByteScout SDK products are sunsetting as we focus on expanding new solutions.
Learn More Open modal
Close modal
Announcement Important Update
ByteScout SDK Sunsetting Notice
Our ByteScout SDK products are sunsetting as we focus on our new & improved solutions. Thank you for being part of our journey, and we look forward to supporting you in this next chapter!

Spreadsheet SDK

  • Home
  • /
  • Spreadsheet SDK
ByteScout Spreadsheet SDK - Compact Framework - PocketPC Form1.vb Program.vb Program.vb Form1.cs Program.cs   Click here to get your Free Trial version of the SDK
ByteScout Spreadsheet SDK - C++ (unmanaged) - Hello World HelloWorld.cpp StdAfx.cpp   Click here to get your Free Trial version of the SDK
ByteScout Spreadsheet SDK - C++ (managed) - HelloWorld HelloWorld.cpp stdafx.cpp   Click here to get your Free Trial version of the SDK
ByteScout Spreadsheet SDK - C# - XLSX to SQL Server Program.cs using System; using Bytescout.Spreadsheet; using System.Data.SqlClient; namespace ExportToSQLServer { class Program { static void Main(string[] args) { try { // MODIFY THE CONNECTION STRING WITH YOUR CREDENTIALS!!! string connectionString = "Data Source=localhost;Initial Catalog=master;Integrated Security=true;"; using (SqlConnection connection = new SqlConnection(connectionString)) { connection.Open(); // Drop test database if exists ExecuteQueryWithoutResult(connection, "IF DB_ID ('XlsxTests') IS NOT NULL DROP DATABASE XlsxTests"); // Create empty database ExecuteQueryWithoutResult(connection, "CREATE [...]
ByteScout Spreadsheet SDK - C# - XLS to XML and XML to XLS Bytescout.XLS.Utils.SimpleXMLConverter.cs   Click here to get your Free Trial version of the SDK
ByteScout Spreadsheet SDK - C# - XLS to SQL Server (via CSV BULK INSERT) Program.cs   Click here to get your Free Trial version of the SDK
ByteScout Spreadsheet SDK - C# - XLS to SQL Server Program.cs using System; using System.IO; using Bytescout.Spreadsheet; using System.Data.SqlClient; namespace ExportToSQLServer { class Program { static void Main(string[] args) { try { // MODIFY THE CONNECTION STRING WITH YOUR CREDENTIALS!!! string connectionString = "Data Source=localhost;Initial Catalog=master;Integrated Security=true;"; using (SqlConnection connection = new SqlConnection(connectionString)) { connection.Open(); // Drop test database if exists ExecuteQueryWithoutResult(connection, "IF DB_ID ('XlsTests') IS NOT NULL DROP DATABASE XlsTests"); // Create empty database [...]
ByteScout Spreadsheet SDK - C# - Unicode Text Program.cs   Click here to get your Free Trial version of the SDK
ByteScout Spreadsheet SDK - C# - TXT to SQL Server Program.cs using System; using Bytescout.Spreadsheet; using System.Data.SqlClient; namespace ExportToSQLServer { class Program { static void Main(string[] args) { try { // MODIFY THE CONNECTION STRING WITH YOUR CREDENTIALS!!! string connectionString = "Data Source=localhost;Initial Catalog=master;Integrated Security=true;"; using (SqlConnection connection = new SqlConnection(connectionString)) { connection.Open(); // Drop test database if exists ExecuteQueryWithoutResult(connection, "IF DB_ID ('TxtTests') IS NOT NULL DROP DATABASE TxtTests"); // Create empty database ExecuteQueryWithoutResult(connection, "CREATE [...]
ByteScout Spreadsheet SDK - C# - Template To XLS Program.cs   Click here to get your Free Trial version of the SDK