How to fix broken context sensitive help in IDE of Delphi 2010

后端 未结 7 1060
臣服心动
臣服心动 2020-12-16 08:24

After working for quite some time, my D2010 help system broke.

Highlighting a keyword like TStringList and hitting F1 results in the message \"No help found for con

7条回答
  •  春和景丽
    2020-12-16 08:50

    You can maybe make things better by rebuilding the help index files.

    Open a command prompt, and navigate to your $(BDS)\Help\Doc folder. Run H2Reg -u to unregister the existing help topics, and then run H2Reg -r to re-register. THen launch help, and you should get the dialog that says it's indexing content.

    If you want more info about H2Reg.exe, simply run it without parameters from the command line; it will display a dialog with details about the command line switches and what they do. You should also scan throuh H2Reg.ini, as it has comments on each section and what it does to affect things.

    And, as an aside, the help in XE is vastly improved, although it still has a way to go.

提交回复
热议问题