Application/Delphi Lecture126 AcitveX에서 ClassID 만 바꾸기 AcitveX에서 ClassID 만 바꾸는 방법입니다. 몰라서 첨부터 다 복사를 했었는데;; View 메뉴에서 Type Library를 선택합니다. 그중에 처음 프로젝트 생성시 정한 이름으로 되어있는게 있습니다. 그걸 클릭한다음 GUID에서 마우스 오른쪽키를 클릭한다음 New GUID를 하시면 됩니다. 2008. 8. 13. 중복 실행 방지 uses Forms, windows, ... var hMutex : LongInt; begin hMutex := OpenMutex( MUTEX_ALL_ACCESS, False, 'aaa1' ); If hMutex 0 Then Begin CloseHandle( hMutex ); Exit; End; hMutex := CreateMutex( Nil, False, 'aaa1'); Application.Initialize; 2008. 8. 13. delphi 의 program files 경로 알기 Yes ... we asked this question a while ago ... we'd meant to change the way we did things when XP appeared but ... now Vista's here we opted for : UserAppFolder := CSIDLShellFolder(CSIDL_COMMON_APPDATA); (Windows 98 returns a nil string and then we use the 'old' way ... put everything in the program files folder !) ------------------------------ function CSIDLShellFolder(CSIDLFolder : integer) :.. 2008. 8. 13. inno setup 바로 설치 하기 DisableDirPage=true DisableFinishedPage=true ;DisableFinishedPage=false DisableReadyMemo=true DisableReadyPage=true 2008. 8. 13. 이전 1 ··· 8 9 10 11 12 13 14 ··· 32 다음