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