Posts

Showing posts from November, 2022

C# - Generating QR Code and Save QR code Image in Windows Form Application

Image
Image
 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using MySql.Data.MySqlClient; using System.Windows.Forms; namespace WindowsFormsApp17 {     public partial class LoginForm : Form     {         private MySqlConnection con = new MySqlConnection();         public LoginForm()         {             InitializeComponent();             con.ConnectionString = @"server=localhost;database=user_info;userid=root;password=;";         }         private void button1_Click(object sender, EventArgs e)         {             MySqlCommand cmd;             MySqlDataReader dr;           ...

C# Full Project Tutorial (Coffee Shop Management System) With source code and MySql database

Image
  using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using MySql.Data.MySqlClient; namespace WindowsFormsApp17 {     public partial class Form1 : Form     {         private MySqlConnection con = new MySqlConnection();                  public Form1()         {             InitializeComponent();             con.ConnectionString = @"server=localhost;database=user_info;userid=root;password=;";         }         private void Form1_Load(object sender, EventArgs e)         {                                     ...