能力值:
(RANK:410 )
|
-
-
2 楼
.data
szOutModulePath db 256 dup(0)
szHelpFile db "\help.chm",0
.data?
hInstance HINSTANCE ?
START:
invoke GetModuleHandle,NULL
mov hInstance,eax
invoke GetModuleFileName,hInstance,offset szOutModulePath,sizeof szOutModulePath
.if eax != NULL
lea eax,[szOutModulePath+eax]
@@:
mov cl,BYTE ptr [eax]
.if cl != 5Ch
dec eax
jmp @b
.endif
mov BYTE ptr [eax],NULL
invoke lstrcat,offset szOutModulePath,offset szHelpFile
invoke MessageBox,NULL,addr szOutModulePath,NULL,MB_OK
.endif
invoke ExitProcess,NULL
end START
|
能力值:
( LV2,RANK:10 )
|
-
-
3 楼
谢谢版主!
现在有个问题,一运行程序提示“没有找到htmlhelp.dll,因此这个应用程序未能启动。重新安装应用程序可能会修复此问题”。
那里能下载到htmlhelp.dll文件啊?
|
能力值:
( LV2,RANK:10 )
|
-
-
4 楼
这究竟是什么问题哦?哪里可以下载到htmlhelp.dll文件啊?
我只找到htmlhelp.inc和htmlhelp.lib
|
|
|