Merging HTML help files

Hello
I am trying to improve a compiled html help (.chm) file.  The only stuff I seem to find requires the source files and I only have the chm file.  Can this be done or should I forget the whole idea?
JM

Hello,
Without the original compiler and project files it is not possible. I have been writing all types of help files mostly in CHM, without the project file and the compiler you simple can not. The actual compiler is critical as third party compilers will inject
their own stuff into project files that the native compiler from Microsoft will not understand.
Please remember to mark the replies as answers if they help and unmark them if they provide no help, this will help others who are looking for solutions to the same or similar problem.

Similar Messages

  • Crash on search function for HTML Help file (.chm) when connected to a Visual C++ application

    Crash on search function for HTML Help file (.chm) when
    connected to a Visual C++ application
    I use the RH_ShowHelp API command to connect a HTML Help file
    (.chm file generated by RoboHelp Word X 5) to my Visual C++
    application. My application is able to call up this HTML help file
    in context-sensitive mode and everything is working great in the
    Contents and Index panels EXCEPT when I click on List Topics (after
    I enter a KEYWORD for search) in the Search panel.
    I got an error that said “Unhandled exception in
    xxxx.exe.(HHCTRL.OCX):0xC00000FD: Stack overflow”
    I am able to execute this .chm file by itself and the search
    function works well in this case. I am using HHActiveX.dll that is
    created on 2/23/04. Is this the correct version?? Any advice what
    to do here??

    Hi agschin and welcome to the RH forums. The hhactivex.dll
    file is not used by the search function so you can rule that our.
    Have you tried recompiling and seeing if the problem still happens?
    You can also start the Bug Hunter feature in RH - View > Output
    View and then select the Bug Hunter button - and see if that throws
    up any clues.

  • How do I tell the installer to put my html help files in the helpdir symbolic location?

    I used the File>>Print function to create an HTML help file for my application and specified in the VI Properties for the app to use <helpdir>:\ApplicationHelp.HTML as the Help Path. This should pop up the help file when a user selects "Help for This VI" from my custom menu. It works from my development directory because I installed the help files into the help directory manually, but I can't figure out how the get the installer to put the files in the correct location on the target system.  I tried putting them in [LabVIEW 2010 Help] in the Destination View for the Source Files category, but that didn't work.  Anyone know the right way to do this?

    kgarrett88 wrote:
    Hey MrSmith, 
    In LabVIEW 2010 SP1, if open the Project and right click My Computer, you can add the help file as a source. After you have added this file, you can then create an installer. Under the Destination header, you can add your desired destination path. After you have done that, you can go to the Source Files header and add the help file to that destination you created. 
    Hope this helps. Good luck with your application!
    ~kgarrett
    Thank you for the reply! I had already done the steps you suggested, so let me put up some screen shots that should help you understand my issue better. First, I specified the path to the help information on the Documentation screen of the applications Properties:
    Next I had added all the help files (DetectorFT.html and all the .png files) to the source in a virtual folder I named Resources.
    Next, for the release build I specified the files to be Always Included on the Source Files header.
    Next I created a Resource Directory as a destination for the release build.
    Then I specified the Resource directory as the destination for the files for the Release build.
    After creating the Release build, I created an Installer build and told it on the SOurce Files screen to put the help files into the [LabVIEW 2010 Help] directory.
    I had assumed that putting the files in the [LabVIEW 2010 Help] destination would put them into the correct directory when the installer ran.  When I ran the installer on the target system, the ran the application I tried to select the "Help for This VI" tab on the menu, but it was grayed out indicating it could not find the file in the proper location.  So the question I have is, what IS the proper location for the files to be installed to so the the application will find the Help files when it is looking for them at the <helpdir> Symbolic Path location? Thanks again!
    Jim Smith

  • I am having Html help files inside my Jar file

    Dear Friends;
    i am having Html help files inside my Jar file.
    how will open the html file using Java Help.
    Thank u

    http://java.sun.com/products/javahelp/reference/docs/index.html

  • HTML help file showing garbage value for french language

    I want to show Help/Tips in my Java application.
    The required help file is simple an HTML file which I am showing on a JPopupMenu using JHelpContentViewer editor.The problem is when I want to show this in Fench language a particular character is displaying garbage value.
    But I open the same HTML help file in a browser (i.e internet explorer..) its showing me the correct value..
    I am using VM1.4.2 and operating system is Win2000.

    Did you specify the correct encoding?

  • Cannot execute Microsoft HTML Help file from within Eclipse managed app.

    I took an easy solution and created a help system for a large Java application using the Microsoft HTML Help Workshop as the IDE. The Help System does exactly what the client wants, but when I tried to integrate it into the application I ran into a brick wall.
    I wrote a very small Java app to see if I could execute the compiled help file (RAS_Help.chm) under the simplest circumstances. The code, which runs fine under VJ++ throws the following exception when run from Eclipse
    e: java.io.IOException: CreateProcess: RAS_Help.chm error=193
    * Created on Mar 20, 2004
    * To change the template for this generated file go to
    * Window>Preferences>Java>Code Generation>Code and Comments
    package pkgTesting;
    import java.io.*;
    * @author Owner
    * To change the template for this generated type comment go to
    * Window>Preferences>Java>Code Generation>Code and Comments
    public class ExeTest {     
         public static void showHelp() {
              Runtime rt = Runtime.getRuntime();
              String prog = "C:\\SCA\\RAS_Help.chm";
              try {
                   rt.exec(prog);
              } catch (IOException e) {
                   System.err.println("e: " + e);
         public static void main(String args[]) {
              showHelp();
    I assume the problem is in launching .chm files, since if I change the program I want to execute from the RAS_Help.chm file to the Windows Solitare game (sol.exe) the program works like a charm with no errors thrown.
    Can anyone give me some guidence on this? If it is impossible to run the HTML Help file I created, I'd be ammenable to redoing it in some other package, if that would guarentee my being able to use it in the client's large application.

    Try this;-*/class OpenBrowser{
       final String WIN_ID = "Win";
    * @throws java.lang.Exception
       OpenBrowser(java.io.File file){
          if(isWindowsPlatform() ){
             try{
                Runtime.getRuntime().exec(tryCommand1()+file);
             }catch(Exception exc1) {
               try{
                   Runtime.getRuntime().exec(tryCommand2()+file);
                }catch(Exception exc2) {
                   try{
                      Runtime.getRuntime().exec(tryCommand3()+file);
                   }catch(Exception exc3) {
                      if(MainEditor.getOpenBrowserHelper() ) new OpenBrowserHelper(file);
          else {
             try{
                Runtime.getRuntime().exec(tryCommand3()+file);
             }catch(Exception exc4) { if(MainEditor.getOpenBrowserHelper() ) new OpenBrowserHelper(file); }
    * @return true if this is a Windows OS
       private boolean isWindowsPlatform(){
          String os = System.getProperty("os.name");
          if ( os != null && os.startsWith(WIN_ID))
             return true;
             return false;
    * @return String path /protocal to open the Internet Explorer browser
       private String tryCommand1(){
          return "C:\\Program Files\\Internet Explorer\\Iexplore.exe file://";
    * @return  String path /protocal to open the default browser
       private String tryCommand2(){
          return "start rundll32 url.dll,FileProtocolHandler file://";
    * @return  String path /protocal to open the default browser
       private String tryCommand3(){
          return "file://";
    }

  • Open an HTML Help file

    I'm trying to open an html help file from my program. The source file where I call it is in the package A in the JAR, ant the HTML file is in package HTML in the JAR; so that I do:
    Runtime.getRuntime ().exec ("cmd /c start HTML/Help.html");
    But it doesn't find the file. Any idea?

    If it's in your JAR, you can't directly use a system call to open it. You have to extract it from the JAR and save it to disk unpacked, at least temporarily. Otherwise, you use an All-Java HTML viewer that can cope with an InputStream source (however, hyperlinks won't work in this case). For this reason, I would suggest not to include the HTML files into the JAR at all but deliver it along with the JAR.

  • Customize Workspace HTML help files

    Hi, is there a way to edit / add to the html help files available to workspace users?
    Thanks
    Michael

    Where adobe Photoshop help is installed depends on the version. It is also not HTML based I beleive its Adobe Air based.
    For example CS2 help is started with  "C:\Program Files\Adobe\Adobe Help Center\ahc.exe"
    and CS5 Help "C:\Program Files\Adobe\Adobe Help\Adobe Help.exe"
    Therfore create a folder for Photoshop help and unzip the zipped Photoshop CS5 help HTML files you say you found into that folder. There will be a root html page file in that folder likely named index.html which you need to point a browser to in order to navagate between the html pages..
    So since you have CS5 perhaps if you create a bat to start a browser pointed to your html help where the bat file name is "C:\Program Files\Adobe\Adobe Help\Adobe Help.exe"  instead of .bat  F1 in CS5 may work.
    You could also try editin your Photoshop shortcut keys delete Photoshop shortcut key F1 from the help menu. After deleteing that shortcut. Create a help.jxs to open your Photoshop Help files index.html file. Then create a action that uses this photoshop script help.jsx and asign F1 to the action. 
    The help.jsx script would be along this line
    // A Photoshop Script by JJMack's used by an Action
    // This script is supplied as is. It is provided as freeware.
    // The author accepts no liability for any problems arising from its use.
    #target photoshop
    app.bringToFront();
    try{
       var URL = new File(Folder.temp + "/PhotoshopHelpt.html");
       URL.open("w");
       URL.writeln('<html><HEAD><meta HTTP-EQUIV="REFRESH" content="0; url=file:///C:/HelpPath/Index.htm"></HEAD></HTML>');
       URL.close();
       URL.execute();
    }catch(e){
    alert("Error, Can Not Open.");

  • Why does RoboHelp 8 crash when compiling merged HTML help after deleting a child project in TOC

    Why does RoboHelp 8 crash when compiling merged HTML help after deleting a child project in TOC? I would be grateful for any assistance.
    Here's the situation:
    -- I recently upgraded from RoboHelp X5 to RoboHelp 8. I upgraded my projects to RoboHelp 8 projects.
    -- One large help system I manage is built such that there is one master project and about 25 child projects. Each of these is its own item in the master project TOC.
    -- In RoboHelp X5 I never had any trouble deleting these.
    -- However now in RoboHelp 8, whenever I delete one (by opening TOC pod, right-clicking on item in question, and clicking Delete), and proceed to "Generate Primary Layout" (MS HTML Help), the generation/compilation process proceeds as far as "Generating full-text search data" and then the whole program crashes!
    Am I doing something wrong? Is there a bug in the software? I have installed patches 8.0.1 and 8.0.2.
    Once again, I thank you in advance for any pointers.
    Matthew Keranen
    Jamsa, Finland

    That does help - thanks a lot.
    Wayne Kroger
    State Street Corporation
    SQA-Princeton
    (609) 580-6264
    mail to: [email protected]
    The information contained in this email and any attachments have been classified as limited access and/or privileged State Street information/communication and is intended solely for the use of the named addressee(s). If you are not an intended recipient or a person responsible for delivery to an intended recipient, please notify the author and destroy this email. Any unauthorized copying, disclosure, retention or distribution of the material in this email is strictly forbidden.

  • HTML help files.

    Is there any good way to control HTML help files from LabView (*.chm)

    Hello,
    Without the original compiler and project files it is not possible. I have been writing all types of help files mostly in CHM, without the project file and the compiler you simple can not. The actual compiler is critical as third party compilers will inject
    their own stuff into project files that the native compiler from Microsoft will not understand.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help, this will help others who are looking for solutions to the same or similar problem.

  • Html help file not initialized.

    I have generated a help-file for a form and the file is fine.
    The Content_id is set, and I have generated the form again.
    I4ve set the help preference to HTML, and the code for the key help is added as follows:
    BEGIN
         CGHP$CALL_HTML_HELP(
              'CG_FORM_HELP',
              'IZI.htm',
              'c:\appl\fmb\',
              '_blank',
              'IZI3020F',
              :SYSTEM.CURSOR_BLOCK,
              :SYSTEM.CURSOR_ITEM);
         message('passes here!');pause;
    EXCEPTION
         WHEN OTHERS THEN
              CGTE$OTHER_EXCEPTIONS;
         message('error!');pause;
    END;
    It doesn4t go to the exeption and seems to pass the message after the call to CALL_HTML_HELP. I have checked that the QMSLIB65 is attached before the OFGHLP lib and that is so!
    I don4t have a clue as to what I4m doing wrong. Are there other preferences to be set, or are you not able to call the HTML from the network drive. Or should I set a different path or no path at all??
    Thanks fo anyone who takes the time to try and help me!
    Martijn!

    Martijn,
    Try setting the help preference to MS help instead of HTML help. I know this is counter-intuitive. :-)
    Headstart forms do not use the native HTML help generated by designer, because this help relies on querying the help information from a database table. Rather, we override the CGHP$CALL_MS_HELP procedure to display the html help document.
    You can look at the headstart demo application to see how this is done.
    Regards,
    Lauri

  • Import a html help file.

    Hi
    I have a help file application. At the moment I have a html help that needs to be converted to pdf.
    The current software can convert but none of the images re scale to fit. Hoping adobe DC can import
    and allow easy editing of my current files.

    Hi Tom,
    We have a done many key improvements and enhancements in this area with Acrobat DC.
    Please feel free to try the trial version for 30 days and let us know if that suits your requirements.
    Regards,
    Rave

  • Heading style customizations not reflected in HTML Help file

    I wanted to share a solution I found for a problem with heading styles. I am using RoboHelp 9 for Word with Office 2010 and generating an HTMLHelp .chm file. When I migrated from Office 2003 to 2010 and RoboHelp 8 to 9, I customized the RoboHelp.docm template file to change the heading styles to have an orange border line over the header. (I had made the customizations in RH 8 for Word, but couldn't transfer the customization to the new template, so I did it by hand). The border line came out black in the header file in most of my topics in the .chm help file. I found one Word doc had topics with the orange line displayed correctly in the help and discovered that that heading style had Style Type = Linked, so I went to each of my Word docs and changed my Heading 1 style to use that style type and it fixed it for all my heading styles.
    In Word 2010, you can change this from the Home tab, Styles ribbon. Rt-click on the Heading 1 style and choose Modify. In the Modify Style dialog set Style type to Linked (paragraph and character).

    Thanks for sharing!
    Greet,
    Willam

  • Hide hover text for HTML help file images???

    When I build HTML help, hovering over the image shows the
    graphic's name. Can this be hidden?

    Hi Molly0602 and welcome to our community
    Hmmm, not sure about using RoboHelp for Word to do this. Out
    of curiosity, why are you using RoboHelp for Word to create HTML
    based output? Why not switch to RoboHelp HTML? I don't believe this
    is an issue in that environment.
    Just a thought... Rick

  • Cannot get simple merged HTML Help project going with context sensitive help

    I have built a very simple project in RH9 from scratch, consisting of a main project and a sub-project now after I have modified our large project in changing every hyphens from file and directory names over a couple of days now only to see that context help still doesn't work.
    The map IDs are not visible in the main project. To test it in the example, invoke the CSH-Test (context sensitive help test) from the Toolbox, enter !SSL!\Microsoft_HTML_Help\main.chm in the Offline field  and a number 57 in the ID field. In our large project I'm getting nothing (no window pops up). In this example I'm getting this mystical error box, saying HH_HELP_CONTEXT called without a [MAP] section.
    Christoph

    Hi William,
    thanks having a look at my problem. I read in another thread today a description which comes close to the problem I'm facing.
    Maybe I formed the mini sample not exactly as our problem is situated. (thus the doubled map ids you were claiming).
    I will try to explain again: we have a couple of CHMs in separate single help projects. These go into their own TOCs, Index Glossar etc. like in sub1->Einzel. For the merged project we produce a chm that goes into the directory of the master (main) project, like in sub1->Primäres Layout.
    Each Topic in the sub project (e.g. sub1->Erstes Thema) has a symbolic link address (e.g. "Linkadresse=det_org_angaben), which is mapped to the MAP ID via the .h file.
    This all used to work that way in RH5.
    Now it seems that this information between the map ID and the symbolic Linkaddress gets lost with the merge process.
    I am not using the same ID (57) twice in my example. The MAP ID in the main project comes from the sub1 project (see the yellow locked MAP ID).
    The simplest test is using the CSH-Test in the Toolbox giving the main.chm as the Helpfile to test and enter the 57 as a MAP ID.
    The idea behind is to use one CHM later to have to open in the application. The other CHMs of the subprojects only need to be present in the application directory. Then you invoke HtmlHelp(with the MAPID),like I posted in this thread.
    The method you are suggesting in mapping the ID to the topic in the main project will not work since the topic is in the CHM of the sub project.
    I modified the sample project once again (somehow the baggage files were not showing) to come closer to the constellation we are using in the large project, though I'm getting the "HH_HELP_CONTEXT called without a [MAP] section" error (which does not occur in our large project).
    Christoph

Maybe you are looking for

  • My ipod shuffle is not working anymore

    Here's my scenario, i got my ipod shuffle from an electronics store in the states during the week of 4th of July 2005; however, i'm from Toronto, Canada.........Canadian citizen. I tested out my ipod shuffle @ my cousins computer before i left, which

  • Acrobat 9 Standard keeps opening my forms in Acrobat Reader XI.

    It tells me that I cannot save data typed into the form.  Acrobat 9 Standard is set as the default for ALL .pdf documents.  If I right click the icon and choose "open with" and then select Acrobat 9, it will work, but if I double click the icon, it o

  • Session Problems(ConcurrentModificationException)

    Hi, I am facing some problems with session here. I get a java.util.ConcurrentModificationException whenever i try to empty the shopping cart. Could somebody pls kindly advise? Thanks in advance below is the code: <% String item = request.getParameter

  • Boot camp cant find windows installer

    I'm trying to run boot camp to install Windows 7 on a partition and it can't find the Windows installer. I'm tried it from a USB and the Windows DVD, but neither works. It's an 2008 iMac 2.66 Ghz 4 Gig Ram, 128 SSD running 10.7.2 Thanks!

  • Help with Columnar (side by side) Subforms - Urgent

    I am attempting to create a two column form that contains dynamic text in both columns.  I have the subforms created and formatted.  The subforms contain labeled fields.  The problem I'm having is that I can't get the subforms to begin at the same po