Share how to add data in datagridview vb.net,

bluemeercat505

New member
#Datagridview #vb.net #add Dữ liệu #Insert Dữ liệu #C #
## Cách thêm dữ liệu trong DataGridView trong vb.net

Trong hướng dẫn này, bạn sẽ tìm hiểu cách thêm dữ liệu vào điều khiển DataGridView trong vb.net.Chúng tôi sẽ đề cập đến các chủ đề sau:

* Tạo điều khiển DataGridView
* Thêm dữ liệu vào điều khiển DataGridView
* Định dạng dữ liệu trong điều khiển DataGridView

### Tạo điều khiển DataGridView

Để tạo điều khiển DataGridView, bạn có thể sử dụng mã sau:

`` `VBNet
Dim DataGridView1 là DataGridView mới ()
`` `

Mã này sẽ tạo điều khiển DataGridView có tên là `DataGridView1`.Sau đó, bạn có thể thêm điều khiển vào biểu mẫu của mình bằng mã sau:

`` `VBNet
Me.controls.add (datagridview1)
`` `

### Thêm dữ liệu vào điều khiển DataGridView

Để thêm dữ liệu vào điều khiển DataGridView, bạn có thể sử dụng mã sau:

`` `VBNet
DIM dữ liệu dưới dạng DataTable mới ()
data.columns.add ("Tên")
data.columns.add ("tuổi")
data.rows.add ("John", "20")
data.rows.add ("Mary", "25")
DataGridView1.DataSource = Data
`` `

Mã này sẽ thêm hai hàng dữ liệu vào điều khiển DataGridView.Hàng đầu tiên sẽ có tên "John" và tuổi "20".Hàng thứ hai sẽ có tên "Mary" và tuổi "25".

### Định dạng dữ liệu trong điều khiển DataGridView

Bạn có thể định dạng dữ liệu trong điều khiển DataGridView bằng cách sử dụng mã sau:

`` `VBNet
DataGridView1.Columns ("Tên"). Width = 200
datagridview1.columns ("tuổi"). chiều rộng = 100
DataGridView1.AutosizeColumns ()
`` `

Mã này sẽ đặt chiều rộng của cột "Tên" thành 200 pixel và chiều rộng của cột "Tuổi" thành 100 pixel.Nó cũng sẽ tự động kích thước các cột để phù hợp với dữ liệu.

### Mã hoàn chỉnh

Mã hoàn chỉnh cho hướng dẫn này là bên dưới:

`` `VBNet
Lớp công khai Mẫu1

Sub Form1_Load (người gửi dưới dạng đối tượng, e là EventArgs) xử lý mybase.load
'Tạo một điều khiển DataGridView.
Dim DataGridView1 là DataGridView mới ()

'Thêm điều khiển vào biểu mẫu.
Me.controls.add (datagridview1)

'Tạo một đối tượng DataTable.
DIM dữ liệu dưới dạng DataTable mới ()

'Thêm các cột vào đối tượng DataTable.
data.columns.add ("Tên")
data.columns.add ("tuổi")

'Thêm hàng vào đối tượng DataTable.
data.rows.add ("John", "20")
data.rows.add ("Mary", "25")

'Đặt thuộc tính DataSource của điều khiển DataGridView thành đối tượng DataTable.
DataGridView1.DataSource = Data

'Định dạng các cột trong điều khiển DataGridView.
DataGridView1.Columns ("Tên"). Width = 200
datagridview1.columns ("tuổi"). chiều rộng = 100
DataGridView1.AutosizeColumns ()
Kết thúc phụ
Kết thúc lớp học
`` `

### hashtags

* #Datagridview
* #vb.net
* #Thêm dữ liệu
* #Insert dữ liệu
* #c#
=======================================
#Datagridview #vb.net #add data #Insert data #c#
## How to Add Data in DataGridView in VB.NET

In this tutorial, you will learn how to add data to a DataGridView control in VB.NET. We will cover the following topics:

* Creating a DataGridView control
* Adding data to the DataGridView control
* Formatting the data in the DataGridView control

### Creating a DataGridView Control

To create a DataGridView control, you can use the following code:

```vbnet
Dim dataGridView1 As New DataGridView()
```

This code will create a DataGridView control named `dataGridView1`. You can then add the control to your form using the following code:

```vbnet
Me.Controls.Add(dataGridView1)
```

### Adding Data to the DataGridView Control

To add data to the DataGridView control, you can use the following code:

```vbnet
Dim data As New DataTable()
data.Columns.Add("Name")
data.Columns.Add("Age")
data.Rows.Add("John", "20")
data.Rows.Add("Mary", "25")
dataGridView1.DataSource = data
```

This code will add two rows of data to the DataGridView control. The first row will have the name "John" and the age "20". The second row will have the name "Mary" and the age "25".

### Formatting the Data in the DataGridView Control

You can format the data in the DataGridView control by using the following code:

```vbnet
dataGridView1.Columns("Name").Width = 200
dataGridView1.Columns("Age").Width = 100
dataGridView1.AutoSizeColumns()
```

This code will set the width of the "Name" column to 200 pixels and the width of the "Age" column to 100 pixels. It will also automatically size the columns to fit the data.

### Complete Code

The complete code for this tutorial is below:

```vbnet
Public Class Form1

Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
' Create a DataGridView control.
Dim dataGridView1 As New DataGridView()

' Add the control to the form.
Me.Controls.Add(dataGridView1)

' Create a DataTable object.
Dim data As New DataTable()

' Add columns to the DataTable object.
data.Columns.Add("Name")
data.Columns.Add("Age")

' Add rows to the DataTable object.
data.Rows.Add("John", "20")
data.Rows.Add("Mary", "25")

' Set the DataSource property of the DataGridView control to the DataTable object.
dataGridView1.DataSource = data

' Format the columns in the DataGridView control.
dataGridView1.Columns("Name").Width = 200
dataGridView1.Columns("Age").Width = 100
dataGridView1.AutoSizeColumns()
End Sub
End Class
```

### Hashtags

* #Datagridview
* #vb.net
* #add data
* #Insert data
* #c#
 
Join Telegram ToolsKiemTrieuDoGroup
Back
Top