개발자의 사투

C# DataTable ReadOnly 해제 본문

컴방/C#

C# DataTable ReadOnly 해제

개발자룽 2020. 4. 9. 16:24

foreach (System.Data.DataColumn col in dt.Columns)                         

col.ReadOnly = false;

'컴방 > C#' 카테고리의 다른 글

XtraGrid ColumnHead MultiLine 설정하기  (0) 2020.06.02
OOP위험성  (0) 2020.05.21
C# devexpress printcontrol in xtrareport  (0) 2020.05.18
C# 빌드이벤트 매크로  (0) 2020.04.20
C# DataTable rowstate 변경하기  (0) 2020.04.09
Comments