Borland47 내문서, 바탕화면 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. HOWTO: 파일을 Internet Information Server에 업로드하는 방법 HOWTO: 파일을 Internet Information Server에 업로드하는 방법http://support.microsoft.com/kb/184352이 문서가 적용되는 제품 보기.기술 자료 ID:184352마지막 검토:2005년 8월 24일 수요일수정:4.1이 문서는 이전에 다음 ID로 출판되었음: KR184352이 페이지에서요약 추가 정보 WebPost API 사용 HTTP 프로토콜 PUT 기능 사용 참조 요약프로그램 방식으로 클라이언트 응용 프로그램에서 Internet Information Server(IIS)에 파일을 업로드하는 데 사용할 수 있는 여러 가지 방법이 있습니다. 본 문서에서는 그러한 방법 중 일부를 제공하고 HTTP PUT 기능을 적용하는 방법을 설명합니다. 위로 가기추가 정보W.. 2008. 1. 17. 예제: POST로 많은 양의 데이터를 요청할 때 HttpSendRequestEx를 사용하는 방법 예제: POST로 많은 양의 데이터를 요청할 때 HttpSendRequestEx를 사용하는 방법http://support.microsoft.com/kb/177188 이 문서가 적용되는 제품 보기. 기술 자료 ID : 177188 마지막 검토 : 2005년 8월 19일 금요일 수정 : 3.2 이 문서는 이전에 다음 ID로 출판되었음: KR177188 이 페이지에서요약추가 정보참고참조 요약 이 예제에서는 Internet Explorer 4.0 WinInet.dll에 처음 도입되고 Internet Client SDK에 설명되어 있는 HttpSendRequestEx 함수의 올바른 사용 방법을 보여줍니다. 원래의 HttpSendRequest 함수에는 큰 제한이 있습니다. 즉, 이 함수를 호출할 때 요청하는 모든 .. 2008. 1. 17. 폴더내 파일을 모두 찾아 특정 이름으로 변경 http://msdn2.microsoft.com/en-us/library/aa365740.aspxvoid __fastcall TMainDataForm::RenameForProductID(AnsiString path, AnsiString add) { AnsiString dir, fn; HANDLE hSrch; WIN32_FIND_DATA wfd; bool bResult = true; int length = path.Length(); if (path[length-1] != '\\') path += "\\"; dir = path + "*.*"; hSrch = FindFirstFile(dir.c_str(), &wfd); while(bResult) { if (wfd.dwFileAttributes & FILE_AT.. 2008. 1. 16. 파일 존재 유무/ Size 알아오기 파일 존재 유무/ Size 알아오기 VC++ 2007/10/08 14:19http://blog.naver.com/lchanje/42891688//AnimatedCursor로그하기 HCURSORLoadCursorFromResource(HINSTANCEinstance,DWORDresourceId,constchar*resourceType) { HRSRChResource=FindResource(instance,MAKEINTRESOURCE(resourceId),resourceType); if(!hResource) returnNULL; HGLOBALhGlobal=LoadResource(instance,hResource); if(!hGlobal) returnNULL; LPBYTElockedBytes=reinterpr.. 2008. 1. 4. 이전 1 2 3 4 5 6 다음