I made small program, which you don't have to install. So when I want to showHelp, I have to extract it from Resources, this works great, and I save a path to this file.
Then when I call ShowHelp, I pass path to extracted file. In closing event, I try to delete this file, and here is problem.
When I use
Help.ShowHelp(this,pathToChmFile);
it works great, I can delete file, but when I pass even topicId, like this
Help.ShowHelp(this, pathToChmFile, HelpNavigator.TopicId, "10");
then when FormClosing is called, I can't delete chm file, because it is opened by my process. But why when I show it without topicId, I can delete it?
Because you can't uninstall my program, I want to clean "rubbish" after myself, but now I can't...
Help.ShowHelp(this,path,"linkToHtml.html");you can delete this file. But this is quite ugly, topicId is more friendly, Even topicIds is only new name for html file, you don't have to write names of files into program... – Arxeiss Aug 4 '12 at 15:22rm.ReleaseAllResources();to release the help resource? – Kian Aug 4 '12 at 15:25Resource.Close();to close the handles on the resource? – Kian Aug 4 '12 at 15:26