飞 飞来石 Unregistered / Unconfirmed GUEST, unregistred user! 2001-08-17 #2 ShellExcuse 'winhlp32' & ' ' & ExtractFilePath(Paramstr(0))+'HelpFile.hlp'
T Toylin Unregistered / Unconfirmed GUEST, unregistred user! 2001-08-17 #3 HtmlHelp(handle,AppPath+'help.chm::/index.htm',HH_DISPLAY_TOPIC,0); 试一下
研 研志 Unregistered / Unconfirmed GUEST, unregistred user! 2001-08-19 #5 不过最后我也想出了一个方法: var st:array[0..250]of char; begin ShellExecute(handle, 'open',strpcopy(st,'帮助.hlp'),nil,nil,SW_SHOW); end.
不过最后我也想出了一个方法: var st:array[0..250]of char; begin ShellExecute(handle, 'open',strpcopy(st,'帮助.hlp'),nil,nil,SW_SHOW); end.
B bwdxh Unregistered / Unconfirmed GUEST, unregistred user! 2001-10-03 #6 以Delphi4.0为例说明其应用过程。 在project|options中的Applications页中设Help File项为"kshelp.hlp"添加“帮助”菜单项, 并在其下面增加“内容”和“索引”两个子菜单项。双击“内容”子菜单项, 输入:“Application.HelpCommand(Help_Contents,0);”,双击“索引”子菜单项, 输入:“Application.HelpCommand(Help_Finder,0);”。这样, 帮助文件就会出现在您的项目中。 这是我这两天在网上找到的。
以Delphi4.0为例说明其应用过程。 在project|options中的Applications页中设Help File项为"kshelp.hlp"添加“帮助”菜单项, 并在其下面增加“内容”和“索引”两个子菜单项。双击“内容”子菜单项, 输入:“Application.HelpCommand(Help_Contents,0);”,双击“索引”子菜单项, 输入:“Application.HelpCommand(Help_Finder,0);”。这样, 帮助文件就会出现在您的项目中。 这是我这两天在网上找到的。