ByteScout BarCode Generator SDK - C# - WinForms Control - ByteScout

ByteScout BarCode Generator SDK – C# – WinForms Control

  • Home
  • /
  • Articles
  • /
  • ByteScout BarCode Generator SDK – C# – WinForms Control

ByteScout BarCode Generator SDK – C# – WinForms Control

MainForm.cs

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace BarcodeControlTester
{
    public partial class MainForm : Form
    {
        public MainForm()
        {
            InitializeComponent();
        }
    }
}

Program.cs

using System;
using System.Collections.Generic;
using System.Windows.Forms;

namespace BarcodeControlTester
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new MainForm());
        }
    }
}


  Click here to get your Free Trial version of the SDK

Tutorials:

prev
next