helpfile

Including a PDF file in SHFB generated .chm (Html Helpfile 1)

时间秒杀一切 提交于 2020-02-25 08:37:26
问题 I need to include a pdf file in my sandcastle documentation. The user should be able to navigate to the pdf on clicking it in the .chm file. Is it possible to do this? I've been searching all forums with no proper answer. I have tried using href tag in the xml comment and providing the url of the pdf file. But it opens the browser instead of the pdf file. Has anyone done this before? 回答1: I have a download link for you: http://www.help-info.de/files_download/CHM-example_project.zip This is

Can I programmatically export class diagrams from Visual Studio 2008?

落爺英雄遲暮 提交于 2020-01-04 09:18:32
问题 I can export a class diagram as an image from Visual Studio by right-clicking on the surface and choosing "Export Diagram as Image..." Is there a way to do this through command line? I'd like to be able to generate all of my class diagrams as images so I can include it in the .chm I am building w/ Sandcastle. 回答1: Found it after a full day of searching. In case anyone ever comes across this again: Two ways to do this: Microsoft.VisualStudio.Modeling.Diagrams.Diagram.CreateBitmap() lets you

Inline package overview documentation using roxygen

流过昼夜 提交于 2020-01-02 10:02:50
问题 I imagine this is a simple thing that I keep overlooking in the documentation, but I can't seem to figure out how to get package-level documentation to work in R. I'm not referring to function or class-specific documentation, but the documentation that you get when you type, for example, ?stats. I've followed the general instructions I've found on the web, creating a sckeleton documentation file saved as .R. The .R file is copied with the package scripts, but the help documentation doesn't

Helpfile opened from modal window unresponsive

佐手、 提交于 2019-12-29 05:25:30
问题 Using Delphi XE2, Win64. So I have a large application with many forms and if I open the help file from the main form and open a modal window and then hit F1 to fire off context-sensitive help on the modal window the help file window shows with the correct info but the help file cannot be closed until I close the modal window. I cannot even get the help file to have focus again if I go back to the application until the modal window closes. Calling this exact same help file from the old

Innosetup - reference a file from [Code] before the installation starts

冷暖自知 提交于 2019-12-24 01:36:07
问题 This is sort of a continuation of this question. I have a file that I want to include with my installation package (a .CHM help file) that I need to access during installation from code. It doesn't need to be installed to the user's machine. So I want to - include the file in the installation package, probably uncompressed (so I guess I will do that with a [Files] ... external flag). - reference the file during installation with code like: procedure HelpButtonOnClick (Sender: TObject) ; var

Add and get CHM file version

旧城冷巷雨未停 提交于 2019-12-19 10:08:25
问题 I need to add version info and retrieve it from the CHM file to make it possible to make an alert message to a user about a new CHM-file version available and downloaded. It means, that I should compare versions of CHM on different machines (Server and clients). The other way is date and time checking, but I should remember about time zones, so this is complicated, because also one should remember about different file systems, according to Windows SDK help about SetFileTime function and

Any light for TEventLogger?

梦想与她 提交于 2019-12-18 17:01:51
问题 I want to see about logging events from a Delphi 5 application to the Windows log, and from another post here I see that I can use the TEventLogger class to do this. However, I can't find any documentation on the syntax of the TEventLogger.LogMessage procedure, so I don't know what all the parameters mean, how to use them, or even what possible values are available. I've tried looking around, and all I find is a page from Embarcadero stating that the function exists, but nothing on its syntax

List all topics from a CHM file

╄→гoц情女王★ 提交于 2019-12-07 02:48:42
问题 I am trying to get a CHM file to open to a specific topic using C#. I have tried using Help.ShowHelp(this, path, HelpNavigator.Topic, "TopicTitle"); but it doesn't find the page. I must not be keying in the topic title correctly. Is there a way that I can programatically retrieve all of the topics from a CHM file so that I can see what they are? 回答1: No, the HtmlHelp API function is far too primitive to support enumerating topics. You could use the 7-zip file manager to look inside the .chm

What is the recommended help file format to use in a modern Windows app?

丶灬走出姿态 提交于 2019-12-06 20:18:45
问题 I am developing a WinForms application and would like to integrate help into it. In the past I integrated .chm help files. Regarding .chm files, this Wiki article states: In 2002, Microsoft announced security risks associated with the .CHM format, as well as security bulletins and patches. They have since announced their intentions not to develop the .CHM format further. From what I have read, Microsoft Help 2.x was the help engine used in VS 2008 and Office 2007 using .hxs file extension

Inline package overview documentation using roxygen

爱⌒轻易说出口 提交于 2019-12-06 12:09:45
I imagine this is a simple thing that I keep overlooking in the documentation, but I can't seem to figure out how to get package-level documentation to work in R. I'm not referring to function or class-specific documentation, but the documentation that you get when you type, for example, ?stats. I've followed the general instructions I've found on the web, creating a sckeleton documentation file saved as .R. The .R file is copied with the package scripts, but the help documentation doesn't get made into a .Rd file (unless I add a function definition also named after the package). An example of