본문 바로가기

분류 전체보기277

Subversion Dump/Load 참고Site: http://www.pyrasis.com/main/Subversion-HOWTO① dump : - cmd 모드 실행 - subversion/bin/ 폴더로 이동 svnadmin dump repository-location > dump.file: C:\Program Files\Subversion\bin>svnadmin dump f:\test > test.dump ----------------------------- ------- ----------- svnadmin이 있는 directory 저장소 위치dump파일명 - (windows에서)위와 같은 방법으로 하면 dump파일이 생성된다. ② load : load 하기 전에 svnadmin 명령어를 이용해서 load 폴더를 create해야 한다.. 2008. 7. 18.
bat(배치)파일 문법 출처: http://blog.naver.com/mokomoji bat(배치)파일 문법bat(배치)파일 문법 일괄처리(Batch) 파일 #1 1.배치파일(Batch File, 일괄처리용 화일) 1.1. 배치파일? Batch(배치)는 '한 묶음','한벌'의 의미하며, 배치파일은 여러 가지 명령어를 한 파일에 모아 작업하는 파일, 즉 하나의 일을 처리하기 위해 여러번 내리는 명령어를 한 번만에 처리할 수 있도록 만들어 놓은 실행파일이다. ① 확장자 이름은 반드시 'BAT'이어야 한다. ② 파일명은 도스의 내부명령어 이름을 피하라. ③ COM, EXE 파일의 이름을 피하라. ④ 명령어 이름이 서로 같아 충돌할 때, DOS는 도스키-->내부명령-->외부명령( *.COM-->*.EXE)-->*.BAT) 순으로 실행.. 2008. 7. 18.
XP, 2000에서 로그온된 사용자 이름 불러오기 51015 / Re:XP, 2000에서 로그온된 사용자 이름 불러오기작성자 : 장성호 (nasilso) 읽음 : 84 2007-10-24 오전 9:39:561. 로그온된 사용자의 이름 GetUserNameA 를 이용해서 ... void __fastcall TForm1::Button1Click(TObject *Sender) { char buf[128]; int size=128; GetUserNameA(buf,(unsigned long *)&size); ShowMessage(buf); } 쿠키폴더도 이렇게 찾을순 있겠죠? 2. 쿠키폴더 찾기 SHGetSpecialFolderLocation 이라는 특수폴더 경로 찾는 함수가 있습니다. #include #define FVSHOWINFO xxFVSHOWINFOxx.. 2008. 3. 4.
내문서, 바탕화면 Path 찾기 Retrieves the location of a special folder.WINSHELLAPI HRESULT WINAPI SHGetSpecialFolderLocation(; HWND hwndOwner, int nFolder, LPITEMIDLIST *ppidl ); ParametershwndOwnerHandle of the owner window that the client should specify if it displays a dialog box or message box.nFolderValue specifying the folder to retrieve the location of. This parameter can be one of the following values:CSIDL_BITBUCK.. 2008. 3. 4.
실행 파일의 위치를 확인하는 방법 1. GetCurrentDir()Returns the name of the current directory.Unit : SysUtilsCategory : file management routinesextern PACKAGE AnsiString __fastcall GetCurrentDir();DescriptionGetCurrentDir returns the fully qualified name of the current directory. 2. ExtractFilePath(Application->ExeName)Returns the drive and directory portions of a file name. Unit : SysUtilsCategory : file name utilitiesextern PA.. 2008. 3. 4.
현재 디렉토리 구하기 현재 디렉토리 구하기 프로그래밍 http://blog.naver.com/area1001/10015201487#include #include #include #include #define BUFSIZE MAX_PATH int _tmain(int argc, TCHAR **argv, TCHAR **envp) { TCHAR Buffer[BUFSIZE]; TCHAR changePath[] = "C:\\Documents and Settings\\deaa\\바탕 화면\\Directory\\ChangedCurrentDir"; DWORD dwRet;// if(argc != 2) // { // _tprintf(TEXT("Usage: Test \n")); // return 0; // } dwRet = GetCurrentDi.. 2008. 3. 4.
비트연산을 이용한 곱셈, 뺄셈 비트연산을 이용한 곱셈, 뺄셈타 싸이트에서 가지고 왔습니다. bit_divide.c bit_multiple.c 2008. 2. 26.
비스타 ActiveX 만들기 비스타용 ActiveX를 만들기 위해 많은 웹문서들과 가이드를 참고한 내용들을 정리했다. 내가 만든 ActiveX와 가장 잘 맞는 방법을 찾아서 적용하기까지 정말 많은 도움이 되었던 문서들을 만들어 주신분들 정말 고맙습니다.지금껏 관리자권한으로 실행되던 ActiveX에서의 작업들이 비스타에서 작동되지 않는다.관리자권한이 필요한 항목 - 파일생성 - 파일삭제 - 파일쓰기 - 파일이동 - 레지스트생성/쓰기/삭제 (HKLM)정의) 기존의 ActiveX --> A 관리자 권한 ActiveX --> B비스타에서도 일반사용자로 IE를 실행하여 A를 실행하여도 특정 폴더(사용자폴더)에는 위에 나열한 작업들이 잘 된다. 관리자권한이 필요한 부분은 임의의 디렉토리에 접근하여 작업을 하는 경우이다. 지금 사용하고 있는 A.. 2008. 2. 14.
Loading a DLL from memory Loading a DLL from memoryThis tutorial describes a technique how a dynamic link library (DLL) can be loaded from memory without storing it on the hard-disk first.Author:Joachim BauchContact:mail@joachim-bauch.deCopyright:Creative Commons License (by-sa)ContentsOverviewWindows executables - the PE format DOS header / stubPE headerSection headerLoading the library Allocate memoryCopy sectionsBase .. 2008. 2. 14.