DataTable C# | VN-Zoom | Cộng đồng Chia Sẻ Kiến Thức Công Nghệ và Phần Mềm Máy Tính

Adblocker detected! Please consider reading this notice.

We've detected that you are using AdBlock Plus or some other adblocking software which is preventing the page from fully loading.

We need money to operate the site, and almost all of it comes from our online advertising.

Please add vn-z.vn to your ad blocking whitelist or disable your adblocking software. 

All the knowledge we share is completely free. If you are willing, please support us here.

×

DataTable C#

chào ae cho hỏi xíu mình có đoạn code như sau:
column6Room = new DataGridViewTextBoxColumn();
column6Room.HeaderText = "08:30"; // Set the header text
column6Room.Name = "column6"; // Set the name of the column
column6Room.Width = 55;
grdMeeting.Columns.Add(column6Room);
/////////////////////////////////////////////////////////////
dt.Columns.Add("08:30", typeof(string));
grdMeeting.DataSource = dt;
khai báo kiểu datatable như này chạy ok, còn add column như trên lỗi như hình mong ae chỉ giáo. mình khai báo rồi sao lại lỗi không tìm thấy cột
error.png
 

lvt491

Rìu Vàng Đôi
Nó báo lỗi ko có cột tên 08:30 do bạn đặt column6Room.Name = "column6"
Thuê code đi bạn :))
 


Top