[求助]chm格式的文件怎样挂到delphi的主菜单中去啊
我用power CHM做了一个帮助文件,可是不知道怎么挂到用delphi做的系统底下去知道的告诉我一声啊!!
2006-09-05 11:23
2006-09-05 13:48
2006-09-05 15:27
//引用单元加上 shellapi
uses shellapi;
//实现部分加如下代码
shellexecute(handle,'open',pchar('calc.exe'),nil,nil,sw_shownormal); //菜单点击事件加上这行就OK了
2006-09-15 10:27