怎样用 ShellAPI 连接帮助文件?(50分)

  • 主题发起人 主题发起人 love_renren
  • 开始时间 开始时间
L

love_renren

Unregistered / Unconfirmed
GUEST, unregistred user!
怎样用 ShellAPI 连接帮助文件?

急,我在线等!!谢谢!!
 
和打开普通文件一样啊
 
//*.HLP格式:
application.HelpFile:=helppath+'/help.hlp';
application.HelpCommand(help_finder,0);

//*.CHM格式:
ShellExecute(Handle,'open',pchar(helppath+'/help.chm'),nil,nil,sw_shownormal);

//*.exe格式
winexec('c:/help/help.exe',sw_shownormal);
 
winhelp(getactivewindow(), 'G:/dwf2.hlp', help_contents, 0);
 
ShellExecute(handle, "open", "help.chm", NULL, NULL, SW_SHOWNORMAL)
ShellExecute(NULL, "open", "http://vckbase.yeah.net", NULL, NULL, SW_SHOWNORMAL)
 
接受答案了.
 
后退
顶部