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
- 입문
- PostgreSQL
- 델파이
- 예제
- xml
- 파라미터
- MFC
- dll
- 데이터베이스
- SDK
- 문자열
- 파이어버드
- 소니
- MySQL
- WIN32 SDK
- c#
- 기초
- 인스톨
- 셋업
- winsock
- Visual Studio 2005
- Visual Basic
- 시리얼 통신
- Firebird
- VB.NET
- SQL
- vb
- Delphi
- 설치
- 초보
Archives
- Today
- Total
프로그래밍 노트
델파이에서 프로그램이 있는 패스 얻기 본문
델파이에서 프로그램이 있는 패스(디렉토리) 얻기
procedure TForm1.FormCreate(Sender: TObject);
var
CurrentPath : array [0..256] of char;
begin
// 프로그램이 있는 현재의 디렉토리 정보 얻기
GetCurrentDirectory(sizeof(CurrentPath), CurrentPath);
Form1.Caption := CurrentPath;
end;
var
CurrentPath : array [0..256] of char;
begin
// 프로그램이 있는 현재의 디렉토리 정보 얻기
GetCurrentDirectory(sizeof(CurrentPath), CurrentPath);
Form1.Caption := CurrentPath;
end;
Comments