I'm working on an application with hundreds of forms and a corresponding help file with over 2,000 topics. I have one particular form which I am assigning a Context ID, but when I press "F1", the help file opens on its default page (Which means the ID passed to it wasn't found). I need to find out what ID is being passed to the help file to further debug why it's not bringing up its proper topic. How do I find this number?
Identify which help context ID is being sent to a help file?
1.3k views Asked by Jerry Dodge At
1
There are 1 answers
Related Questions in DELPHI
- How can I read the header of request to webserver
- Receiving Notifications for Individual Task Completion OmniThreadLibrary Parallel.ForEach
- Delphi - How to get result of function from QuickReport without viewing a report?
- Out of memory while adding documents to a Firebird BLOB field with Delphi
- How to MakeScreenshot fullpage on Delphi
- How to program a COM object with an IEnumerator, IEnumerable interface inside
- How to Dynamically Add Controls to Delphi Form
- How to write a string in Stringrid with DelimitedText in FMX Delphi 11
- TGrid/TStringGrid multi cell selection / multi editing in delphi firemonkey (12)
- How to localize "Today" in the Delphi TMonthCalendar?
- How can I call a SOAP webserver method in Vue.js?
- Efficiently Handling Large Number of API Calls with Delphi 10.4 and OmniThreadLibrary
- Delphi can not compile the unit create by its "XML Data Binding Wizard"
- Save Form Properties in File and then restore those Properties after reopening
- Is it possible to open a blob without saving it to file
Related Questions in DELPHI-XE2
- E2170 Cannot override a non-virtual method on Updating DSharp
- Scanning bmp file pixel by pixel using TBmp.Scanline with Delphi
- How to Check Delphi TADOConnection.State
- Add a control to a subcomponent inside a custom control
- Installing FastQueryBuilder Component Fails to install into Delphi XE2 IDE
- Delphi XE2 Installation fails to download required files due to connection issues
- (Delphi) Trying to make derivative DBGrid, can't make it work
- Can not use Eureka Log function in module
- Crystal report database issue in Delphi 11.2
- Disconected session Rad Studio XE2
- When typing at the end of the editmask, it will pass the number to the left side until it reaches the last one
- When will a constant be created in Delphi XE2?
- Dark Theme for XE2
- ComboBox doesn't behave the same inside panel
- Named subcomponent inside compound(?) component
Related Questions in HELPFILE
- How to view chm file in a web browser?
- Create a script to rename help file topics ending in ".txt"
- Powershell help module not able to find help files in MacOS
- Problem with EXCEL MacroOptions method to assign help file to UDF
- What is the best alternative to HTML Help files
- Best approach to implement Help feature in Windows Desktop Application - Restrict the App knowledge base to authorize access
- Helpfile (*.chm) file not opening within embarcadero application
- Using help file (.sh6) in a windows form application on Visual Studio in C#
- How to navigate to specific contents of madcap flare's document from vb.net code?
- Python argparse, how to make a single word in a help italics
- How to convert HLP files into CHM files
- Create and integrate a Help File for WPF vb.net
- How can I use a hlp file for context sensitive help in my application?
- How to see mathematical expressions correctly in a Help html of a function (appearing after right-click) in R GUI?
- Debug an embedded missing help topic from an exe
Related Questions in HELPCONTEXT
- identify helpcontextid in visual studio 2010 for windows application form
- Netbeans: Custom HelpCtx that open help in browser
- Identify which help context ID is being sent to a help file?
- Bulk-edit HelpContext and/or HelpKeyword of project files?
- How Can I Get Context Sensitive He-lp in Delphi to Use Symbolic Names instead of HelpID Aliases?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
I discovered the solution as I was writing this question, so I am answering this question Q&A style...
The
Applicationcomponent has an eventOnHelpwhich is triggered when the help file is to be opened. Assign a handler function to this event and then read theDataparameter to get this context ID.On a further side note, you can change the
CallHelpparameter toFalseto make your application cancel the call to the help file, just before it opens.