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 |
Tags
- C# WndProc
- C# DataTable linq
- C# Devexpress CheckListBoxControl 줄 바꿈
- C#
- DataTable ReadOnly
- Row Indicator
- C# build
- 델파이
- delphi JSON
- CustomDrawColumnHeader
- C# column
- ColumnHead MultiLine
- C# 빌드이벤트
- RichEditControl
- RichEditControl Bold
- mssql 문자열 합치기
- Delphi
- C# linq pivot
- C# 컬럼비교
- drawgrid
- devexpress grid
- 해운대밀면
- C# 매크로
- C# SendMessage
- 밀고
- C# Devexpress
- 밀면
- C# 0x8001010d
- visualstudio 관리자권한
- C# Devexpress CheckListBoxControl word wrap
Archives
- Today
- Total
목록delphi JSON (2)
개발자의 사투
Delphi JSONObject 값 가져오기
var tempObj : TJSONObject; begin tempObj := TJSONObject.Create; tempObj.AddPair('A', '1') tempObj.AddPair('B', '2') tempObj.AddPair('C', '3') showmessage(tempObj.Get('A').JsonValue.Value); // '1' end; array 찾아올때 ///(TJSONArray.Items[i] as TJSONObject).Get('A').JsonValue.Value;
컴방/델파이
2020. 2. 18. 16:07
델파이 JSON 파일 읽기(delphi Json File Read)
uses System.IOUtils; var aJsonObject: TJTJSONObject; aJsonArray : TJSONArray; data: TBytes; tempString: String; begin aJsonObject:= nil; aJsonArray := nil; data := TEncoding.ASCII.GetBytes(TFile.ReadAllText('FILE_PATH' + 'sampleTest.json')); tempString := TEncoding.UTF8.GetString(data); apaging := TJSONObject.ParseJSONValue(tempString) as TJSONObject; aList := apaging.GetValue('list') as TJSONAr..
컴방/델파이
2020. 1. 16. 15:29