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