본문 바로가기

전체 글158

맥도날드 맥머핀 무료 2009. 7. 20.
인스톨쉴드 플로그램 두개 설치 //--------------------------------------------------------------------------- // OnFirstUIAfter // // First Install UI Sequence - After Move Data // // The OnFirstUIAfter event called by OnShowUI after the file transfer // of the setup when the setup is running in first install mode. By default // this event displays UI that informs the end user that the setup has been // completed successfully... 2009. 7. 17.
[InstallShield] 시스템 변수(환경변수) path 설정 ─━ 소리의 세상 | 소리 http://blog.naver.com/programsite/140004308951 // Static values for RefreshEnvironment() #define HWND_BROADCAST 0xFFFF #define WM_SETTINGCHANGE 0x001A #define SMTO_ABORTIFHUNG 0x0002 prototype BOOL USER.SendMessageTimeout(HWND, SHORT, SHORT, POINTER, SHORT, SHORT, POINTER); prototype LONG KERNEL.GetLastError(); prototype SetEnvPath(STRING, BOOL); prototype SetRegValue(STRING, STRI.. 2009. 7. 16.
InstallScript 문법 어떤 프로그램이던지 (스크립트, VB,C/C++등등) 조금이라도 해보신분은 금방 아하~ 하고 아실테지만 아니신 분들은..이게뭐지..싶을지도 모르겠습니다. 사용자 함수 추가 스크립트에 함수를 추가 하기 위해서는 prototype을 정의 하고 function body를 작성합니다. //프로토 타입 정의 protype GetPathParts(STRING, BYREF STRING, BYREF STRING, BYREF STRING); //function block 작성 function GetPathParts(szFullPath, svDrv, svPath, svName) LONG lResult; //사용할 변수를 정의 합니다. begin // 함수의 실제 내용 시작 lResult = ParsePath(svDrv, .. 2009. 7. 16.