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