L llockf Unregistered / Unconfirmed GUEST, unregistred user! 2002-11-04 #1 我是用MDI来做开发程序,请问如何在各子窗体中按下F1时调用主窗体的帮助文件?
L louhong Unregistered / Unconfirmed GUEST, unregistred user! 2002-11-04 #2 在主Form的OnCreate中加入下面的代码: Application.HelpFile := ExtractFilePath(ParamStr(0)) + 'myhelp.hlp';//myhelp.hlp是你的帮助文件名,放在程序所在的目录
在主Form的OnCreate中加入下面的代码: Application.HelpFile := ExtractFilePath(ParamStr(0)) + 'myhelp.hlp';//myhelp.hlp是你的帮助文件名,放在程序所在的目录
L llockf Unregistered / Unconfirmed GUEST, unregistred user! 2002-11-05 #3 louhong,那是链接帮助文件时用的,现在我要的是F1的功能键。你看清问题先。不过还是谢谢你的参与!
L louhong Unregistered / Unconfirmed GUEST, unregistred user! 2002-11-06 #4 老兄,你试过了吗?声明过以后,按F1它自动会调帮助文件的!