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
- 입문
- 소니
- c#
- 데이터베이스
- 예제
- Firebird
- SQL
- 문자열
- 파라미터
- 초보
- winsock
- MySQL
- Delphi
- SDK
- 시리얼 통신
- 셋업
- PostgreSQL
- 설치
- WIN32 SDK
- 기초
- 인스톨
- dll
- Visual Studio 2005
- xml
- MFC
- 델파이
- vb
- VB.NET
- 파이어버드
- Visual Basic
Archives
- Today
- Total
목록object (1)
프로그래밍 노트
[델파이]Object의 List 사용해 보기(TObjectList)
unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Contnrs; type // ObjectList에 추가할 Object TMyObj = class(TObject) private FiState : integer; FsId : string; FiTemp : integer; public function Cal(iTemp: integer): integer; published property State : integer read FiState write FiState; property ID : string read FsId write FsId; e..
델파이
2010. 10. 6. 18:07