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