Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | 7 |
| 8 | 9 | 10 | 11 | 12 | 13 | 14 |
| 15 | 16 | 17 | 18 | 19 | 20 | 21 |
| 22 | 23 | 24 | 25 | 26 | 27 | 28 |
| 29 | 30 | 31 |
Tags
- Delphi
- devexpress grid
- C# SendMessage
- C# 빌드이벤트
- C# 0x8001010d
- C# Devexpress CheckListBoxControl 줄 바꿈
- visualstudio 관리자권한
- C# DataTable linq
- 밀면
- C# Devexpress CheckListBoxControl word wrap
- Row Indicator
- 해운대밀면
- DataTable ReadOnly
- C# column
- RichEditControl
- 델파이
- RichEditControl Bold
- C# 매크로
- C# linq pivot
- CustomDrawColumnHeader
- C# Devexpress
- 밀고
- C# 컬럼비교
- drawgrid
- C#
- C# build
- ColumnHead MultiLine
- delphi JSON
- mssql 문자열 합치기
- C# WndProc
Archives
- Today
- Total
개발자의 사투
C# DataTable 컬럼 일치 비교 본문
foreach (DataColumn column in BaseDt.Columns)
{
if (tempDt.Columns.Contains(column.ColumnName))
{
if (tempDt.Rows[0][column.ColumnName] != aaa.Rows[0][column.ColumnName])
{
MessageBox.Show("불일치항목 존재 " + column.ColumnName);
}
}
else
{
MessageBox.Show("컬럼 없음 " + column.ColumnName);
}
}
'컴방 > C#' 카테고리의 다른 글
| C# Devexpress grid Row Indicator Panel visible (0) | 2020.06.30 |
|---|---|
| C# Devexpress DateEdit clear 공란으로 초기화하기 (0) | 2020.06.24 |
| C# string yyyymmdd to yyyy-MM-dd (0) | 2020.06.12 |
| C# 특정 문자열 찾아서 자르기 (0) | 2020.06.10 |
| XtraGrid ColumnHead MultiLine 설정하기 (0) | 2020.06.02 |
Comments