일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Row Indicator
- delphi JSON
- DataTable ReadOnly
- C# WndProc
- C#
- C# linq pivot
- RichEditControl Bold
- 밀면
- 해운대밀면
- C# 0x8001010d
- C# Devexpress
- 밀고
- C# build
- Delphi
- drawgrid
- C# DataTable linq
- C# Devexpress CheckListBoxControl 줄 바꿈
- devexpress grid
- visualstudio 관리자권한
- C# 빌드이벤트
- C# SendMessage
- mssql 문자열 합치기
- C# Devexpress CheckListBoxControl word wrap
- 델파이
- CustomDrawColumnHeader
- C# column
- C# 매크로
- RichEditControl
- ColumnHead MultiLine
- C# 컬럼비교
- Today
- Total
개발자의 사투
DevExpress.XtraRichEdit.RichEditControl 사용 시 특정 행을 비교해서 굵게 표시하는 기능 private void specificLineBold(List compareStr) { if (compareStr.isNullOrEmpty()) { return; } Document document = richEditControl1.Document; for (int i = 0; i < richEditControl1.Document.Paragraphs.Count; i++) { DocumentRange documentRange = richEditControl1.Document.Paragraphs[i].Range; string specificLineStr = richEditControl1.D..
C#으로 SendMessage 와 WndProc를 사용하던 중 COM DLL을 호출 할 경우 0X8001010d오류가 발생하였다. 구글링 검색후 해당처럼 적용하니 매우 정상적으로 작동되었다. private delegate void CheckDelegate(stirng a) protected override void WndProc(ref Message m) { try { switch (m.Msg) { case clsWin32.WM_COPYDATA: CheckDelegate function; function = new CheckDelegate(CheckInf); IAsyncResult result = function.BeginInvoke(""); break; default: break; } } catch (..
GridOptionsView.ShowIndicator - allows you to hide the row indicator panel. GridOptionsView.ShowIndicator Property | WinForms Controls | DevExpress Documentation GridOptionsView.ShowIndicator Property Namespace: DevExpress.XtraGrid.Views.Grid Assembly: DevExpress.XtraGrid.v20.1.dll Declaration C# VB.NET [DefaultValue(true)] [XtraSerializableProperty] public virtual bool ShowIndicator { get; set;..