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
- 예제
- 인스톨
- 델파이
- 파라미터
- 기초
- SDK
- WIN32 SDK
- VB.NET
- 초보
- c#
- winsock
- xml
- 셋업
- 시리얼 통신
- dll
- 문자열
- Visual Basic
- SQL
- 소니
- Visual Studio 2005
- vb
- 데이터베이스
- Firebird
- 설치
- 파이어버드
- Delphi
- 입문
- MFC
- PostgreSQL
- MySQL
Archives
- Today
- Total
목록TObjectList (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