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
- 입문
- 델파이
- dll
- WIN32 SDK
- 초보
- MySQL
- PostgreSQL
- 파이어버드
- 예제
- 데이터베이스
- vb
- xml
- 파라미터
- winsock
- 셋업
- c#
- 기초
- VB.NET
- 시리얼 통신
- 설치
- SQL
- 소니
- Firebird
- SDK
- 인스톨
- Visual Basic
- 문자열
- MFC
- Delphi
- Visual Studio 2005
Archives
- Today
- Total
목록SetLength (1)
프로그래밍 노트
[델파이] 함수에서 동적 배열과 정적 배열을 파라미터로 넘기는 방법
함수에서 동적 배열과 정적 배열을 파라미터로 넘기는 방법 unit uMain; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TForm2 = class(TForm) Button1: TButton; Button2: TButton; procedure Button2Click(Sender: TObject); procedure Button1Click(Sender: TObject); private { Private declarations } // 정적 배열형 선언 type TArrVal = array[0..9] of Integer; function Static..
델파이
2008. 10. 6. 17:15