datagridview

Simple Add, Edit, Update, Delete, Search in VB.NET and MS Access with Source Code

Submitted by ajroof on
Hello! I develop this application when I was a newbie in VB.NET programming. I want to share this sort of simple code for the beginner in the VB.NET language. This is a simple program that was originally programmed in Visual Studio 2008 and MS Access 2003. This application can Add, Edit, Update, Delete, Search records. The code itself is easy to understand which is can easily be modified. This has

How to Display the Current Row Into the TextBoxes Using C#

Submitted by janobe on
Passing data from the datagridview into the textbox is a common problem if you are a beginner in programming. So, in this tutorial, I will teach you how to display the current row into the textboxes using c#. This program is composed by adding column and rows in the datagridview programmatically and it will automatically display the data in the textbox when the datagridview cell is clicked. This is a big help for you to solve your current problem in programming and you can do it in no time. Follow the step by step guide to know how it works.

Create a dynamic NumericUpDown and button into the DataGridView.

Submitted by Thongkorn on
This article is an extension of the grid capabilities (DataGridView) which is the basic control (or component) that is attached from Microsoft. By adopting a button that increases or decreases integer values (NumericUpDown) is inserted into the grid (Between 1 - 100), but there will be something special will cause 2 events: Mouse click, click on the cell of the grid that we want, then the

How to Navigate Records Based on DataGridView Using C#

Submitted by janobe on
This time, let’s learn how to navigate records based on datagridview using C#. This tutorial will show to you that you can put limitation on your displayed records in the datagridview. Sometimes, it’s stressful to scroll down if you are looking for a record that contains a lot of data. Well, this tutorial is a big help for you because you don’t have to scroll down anymore. You can now easily find the record that you’re looking for in just a click. Simply click the next and previous button to see other displayed records.

Add/Remove Rows and Validating Cells DataGridView Control

Submitted by Thongkorn on
This project is an advanced VB.Net (2010) code but it is a base implementation in every project. I write all the code in the @Run Time. Because of the flexibility to control the program for work as we want. This will make users feel to “Friendly used”. It consists of locking the keyboard in each cell of the DataGridView. In case of an integer, it can only be numbered from 0 to 9. In case of a

Navigate Record In the DataGridView Control (Count the records, First and Last Buttons)

Submitted by janobe on
This is the continuation of my previous tutorial which is the Navigate Record In the DataGridView Control. This time I’m going to add the last and first buttons and at the same time I’m going to add the counting of how many times the displayed records change in the DataGridView.

Navigate Record In the DataGridView Control

Submitted by janobe on
In this tutorial I will teach you how to navigate records in DatagridView using Visual Basic 2008 and MySQL Database. This will show you that you can limit your displayed records in the Datagridview. And there’s no need for you to scroll down to it whenever you have plenty of records. All you have to do is to click next and previous buttons.

AutoComplete TextBox in a DataGridView

Submitted by janobe on
In this tutorial I will teach you how to Auto Complete a TextBox inside the DataGridView in the Visual Basic 2008 and MySQL Database. Others are used to store the list of items in the ComboBox. So, for a change, I used a TextBox because it’s easy to use and you don’t have to drop down in searching for the items that you needed. Just simply type the initial letter of the items that you’re going to search.