This tutorial will teach you how make a Autocomplete Textbox using C#.net Sqlserver Database.
First Step you have to make the GUI Design after that select the textbox and go to the Properties do the couple of option i attached the screenshot image below.do the same what i attached below.
Write the code inside the Form_Load Event
using System.Data.SqlClient; namespace autocomplete { public partial class Form1 : Form { public Form1() { InitializeComponent(); } SqlConnection con = new SqlConnection("server=.; database = Bank; Integrated Security = true"); private void Form1_Load(object sender, EventArgs e) { try { AutoCompleteStringCollection col = new AutoCompleteStringCollection(); con.Open(); string sql = "select * from account"; SqlCommand cmd = new SqlCommand(sql, con); SqlDataReader sdr = null; sdr = cmd.ExecuteReader(); while (sdr.Read()) { col.Add(sdr["accountno"].ToString()); } sdr.Close(); textBox1.AutoCompleteCustomSource = col; con.Close(); } catch(Exception ex) { Console.WriteLine(ex.Message); } }
The Touchable Shop POS (Point of Sale) system is a sophisticated software solution developed using…
Creating a responsive login form is a crucial skill for any web developer. In this…
In this tutorial will teach Laravel 12 CRUD API by step. Laravel 10 CRUD Application …
In this lesson we talk about laravel 12 image uploading and display the image step…
In this tutorial will teach Laravel 12 CRUD Application step by step. Laravel 12 CRUD…
Conditional statements in Python allow us to control the flow of execution based on conditions.…