How to display selected .chm help topic

In .hlp you just click on a topic once in the TOC or index
and that topic displays. In .chm you have to click twice to display
the topic. How can I get my .chm to work like .hlp?
I'm running RH X5 on XP. Did not find anything about this in
help or forum.

Hi again
I think you will be able to accomplish it, but your developer
will need to become accustomed to coding things differently. After
all, you aren't using WinHelp any more. You are now in the world of
the compiled .CHM file! The calls will be different.
Unfortunately, I'm not a good source for advising how the
calls should change. I'm not a developer and I didn't stay at a
Holiday Inn Express last night, so I can't tell you what needs to
change. I'm thinking that your developer will need to visit a forum
to ask how to properly connect the application to a compiled .CHM
file. You might start at the links below for info.
Microsoft Help MVP Rob Chandler's
site
Former Microsoft
Help MVP David Liske's site
Hopefully something here is helpful... Rick

Similar Messages

  • How to display selected records on one HTML page?

    Hi,
    I would like to display selected part of records on one page in HTML region. For example I have a Master - Detail table set named Procedures and Tasks (each Procedure can have one or more tasks)
    I would like to be able to display all Tasks for a given Procedure in one HTML region on a page... The problem is that the number of tasks vary between procedures and can change in time. Also, the 'task description' can be very large so a simple report list of all tasks is something I cannot use... (I would like eg for the task name to be here, and the task_description to be there - unlike the report where everything is in one line...) The following are my ideas but non of them seemed to be feasable here...
    1. Use a report based on vertical columns (However I am using Theme 10 for which there are no vertical column templates. The only vertical templates I can see are the default ones but I have no idea how to customize them - where are they?)
    2. In HTML region use &ITEM_NAME. substitutions. In order to display more than one &EMN_NAME. (based on eg. EMPID) I suspect that I would need to write some kind of javascript loop. Has anyone have an idea about how would such a script look like?
    3. Display each Task in a separate screen. This is something I would want least but better than nothing - to have a customized report which would display one task at a time with some kind of pagination to it...
    Please let me know if someone has tried something simmilar or maybe there is a 4th option which will be simpler and easier...
    Many thanks,
    Pawel.
    I tried to make a very simple illustration of what I would like to achive here:
    http://htmldb.oracle.com/pls/otn/f?p=44995:3:9461299983704828937::::
    Message was edited by:
    padmocho

    Just to answer this one myself....
    In order to achive the above I used a PL/SQL Dynamic Content page and entered a html content in htp.prn('');
    Then, I created a PL/SQL LOOP which searches through the various rows...
    In the end, whenever I wanted to display html content I just used htp.prn and for variables I used htp.p(<var_name>);
    Maybe, it helps ;)

  • How to Display selected Acivity in Next Tab

    Hi,
    I have a requirement i added an extra in in t-code IW22,
    in that the standard screen tab called "ACTIVITIES"
    i have some line items ex:
    1 activity 1
    2 activity 2
    3 activity 3
    4 activity 4 in this if i select activity 4 then that activity should get display in my added tab
    if i select activity 3 then that activity should get display in my added tab.
    but my tab is showing default as activity1 which ever i select.
    how to do it ?
    ill present the code where exactly the data is picking from standard tab (Activity tab)
    select single kurztext from qpct into text_i_4
    where katalogart = 'A'
    and codegruppe = e_viqmma-mngrp
    and code = e_viqmma-mncod
    and sprache = sy-langu.
    if text_i_4 is initial.
    text_i_4 = e_viqmma-matxt.
    endif.
    if ( cust_aktyp = 'V' or cust_aktyp = 'A' ) and text_i_4 is initial.
    "Notifn Change/Display
    select single * from qmma into viqmma
    where qmnum = viqmel-QMNUM and kzloesch = '' .
    loop at t_tc.
    select single kurztext from qpct into text_i_4
    where katalogart = 'A'
    and codegruppe = viqmma-mngrp
    and code = viqmma-mncod
    and sprache = sy-langu.
    ENDSELECT.
    if sy-subrc = 0.
    else.
    text_i_4 = viqmma-matxt.
    endif.
    endif.
    if text_i_4 is initial.
    message w537(im).
    flag_error = 'X'.
    exit.
    elseif not t_tc[] is initial.
    clear t_tc.
    concatenate 'Why' text_i_4 into t_tc-why_quest separated by space.
    modify t_tc index 1 transporting why_quest.
    endif.
    Thanks & Regards
    Rajesh

    guys help me out

  • How can I make the Help Topics available offline?

    How can I make iBooks Author Help Topics available offline?

    Deleted and re-installed...
    Still get the following:
    The selected topic is currently unavailable
    Make sure you’re connected to the Internet. For help connecting, choose Apple menu > System Preferences, click Network, and click “Assist me.”
    If you’re connected to the Internet, and the content still doesn’t appear, try again later.

  • How to display selected table fields in ALV report.

    Hi,
    I am displaying data from table EKPO using ALV through this query.
    select * from ekpo into table itab_ekpo up to 25 rows.
    bt if i need to display selected fields like
    select ebeln matnr netpr from ekpo into table itab_ekpo up to 25 rows.
    IT gives  error GETWA_NOT_ASSIGNED.
    FIELD SYMBOL HAS NOT YET BEEN ASSIGNED
    CAN ANYONE PLZ HELP ME.

    Hi ,
          I am pasting the code in which i am getting the error.Plz help.
    REPORT  ZHALV.
    tables:ekpo.
    data itab_ekpo type ekpo occurs 100 with header line.
    types: begin of itab_new,
           f_ebeln type ekpo-ebeln,
           f_matnr type ekpo-matnr,
           f_netpr type ekpo-netpr,
           end of itab_new.
    data itab1 TYPE STANDARD TABLE OF itab_new initial size 0.
    type-pools: slis.
    DATA: lt_fieldcat TYPE slis_t_fieldcat_alv,
          lf_fieldcat TYPE slis_fieldcat_alv.
    DATA:    ws_repid TYPE sy-repid VALUE 'ZHALV'.
    DATA:  l_layout   TYPE slis_layout_alv.
    selection-screen Begin of block block1 with frame title text-111.
    select-options : S_EBELN for EKPO-EBELN.
    selection-screen end of block block1.
    INITIALIZATION.
    start-of-selection.
      select ebeln matnr netpr from ekpo into table itab1 up to 10 rows WHERE EBELN IN S_EBELN.
    *select * from ekpo into table itab_ekpo up to 25 rows.
      PERFORM build_fieldcatalog.
      PERFORM build_layout.
      PERFORM GET_DETAILS.
    end-of-selection.
    *&      Form  build_fieldcatalog
          text
    FORM build_fieldcatalog .
    PURCHASING DOCUMENT NUMBER
      CLEAR lf_fieldcat.
      lf_fieldcat-fieldname = 'EBELN'.
      lf_fieldcat-ref_tabname = 'EKKO'.
      lf_fieldcat-ref_fieldname = 'EBELN'.
    MATERIAL NUMBER
      CLEAR lf_fieldcat.
      lf_fieldcat-fieldname = 'MATNR'.
      lf_fieldcat-ref_tabname = 'EKPO'.
      lf_fieldcat-ref_fieldname = 'MATNR'.
      APPEND lf_fieldcat TO lt_fieldcat.
    NET PRICE IN PURCHASING DOCUMENT
      CLEAR lf_fieldcat.
      lf_fieldcat-fieldname = 'NETPR'.
      lf_fieldcat-ref_tabname = 'EKPO'.
      lf_fieldcat-ref_fieldname = 'NETPR'.
      lf_fieldcat-cfieldname = 'WAERS'.
      lf_fieldcat-do_sum = 'X'.
      APPEND lf_fieldcat TO lt_fieldcat.
    ENDFORM.                    " build_fieldcatalog
    *&      Form  GET_DETAILS
          text
    FORM GET_DETAILS.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
                                 I_INTERFACE_CHECK                 = ' '
                                 I_BYPASSING_BUFFER                = ' '
                                 I_BUFFER_ACTIVE                   = ' '
         I_CALLBACK_PROGRAM                = ws_repid
                                 I_CALLBACK_PF_STATUS_SET          = ' '
                                 I_CALLBACK_USER_COMMAND           = ' '
                                 I_CALLBACK_TOP_OF_PAGE            = ' '
                                 I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
                                 I_CALLBACK_HTML_END_OF_LIST       = ' '
         I_STRUCTURE_NAME                  = 'EKPO'
                                 I_BACKGROUND_ID                   = ' '
                                 I_GRID_TITLE                      =
                                 I_GRID_SETTINGS                   =
                                 IS_LAYOUT                         =
                                  IT_FIELDCAT                       = lt_fieldcat
                                 IT_EXCLUDING                      =
                                 IT_SPECIAL_GROUPS                 =
                                 IT_SORT                           =
                                 IT_FILTER                         =
                                 IS_SEL_HIDE                       =
        I_DEFAULT                         = 'X'
        I_SAVE                            = 'A'
                                 IS_VARIANT                        =
                                 IT_EVENTS                         =
                                 IT_EVENT_EXIT                     =
                                 IS_PRINT                          =
                                 IS_REPREP_ID                      =
                                 I_SCREEN_START_COLUMN             = 0
                                 I_SCREEN_START_LINE               = 0
                                 I_SCREEN_END_COLUMN               = 0
                                 I_SCREEN_END_LINE                 = 0
                                 I_HTML_HEIGHT_TOP                 = 0
                                 I_HTML_HEIGHT_END                 = 0
                                 IT_ALV_GRAPHICS                   =
                                 IT_HYPERLINK                      =
                                 IT_ADD_FIELDCAT                   =
                                 IT_EXCEPT_QINFO                   =
                                 IR_SALV_FULLSCREEN_ADAPTER        =
                               IMPORTING
                                 E_EXIT_CAUSED_BY_CALLER           =
                                 ES_EXIT_CAUSED_BY_USER            =
        TABLES
          T_OUTTAB                          = itab1
          EXCEPTIONS
                                 PROGRAM_ERROR                     = 1
                                OTHERS                            = 2.
      IF SY-SUBRC <> 0.
        WRITE: 'SY-SUBRC: ', SY-SUBRC .
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    *append itab_ekpo to i_tab.
    ENDFORM.                    "GET_DETAILS

  • How to " display selected track 's automation" ????

    Hello
    In former versions of logic ( prior to lp8) , there was an option "display selected track's automation " now there is only " display automation " wich means every time i click on this , it will zoom all my tracks automatically wich can be pretty confusing . Id like to be able to see automation only for the selected track in the arrangement .
    Is this option still available ??
    If yes where did it go ??
    Thanx in advance.

    If you use auto track zoom and make your arrangement tracks small enough heigtwise, any track chosen will therefore display its automation.
    /juhani

  • How to display Selected data from TextInput  only should be displayed in DataGrid

    Hi ,
    I have lot of data on to my Datarid displayed with the help of An ArrayCollection as dataprovider .
    I want to use filtering Functionality of ArrayList .
    I have  a TextInput and when the suer enters some text , then i want only related data shpould only be displayed on to the DataGrid .
    I have tried this  , but i have struck up
    This is my ArrayCollection
    <mx:ArrayCollection id="arraycoll">
        <mx:Object>
            <mx:name>Ravi</mx:name>
            <mx:pass>Keyboard</mx:pass>
        </mx:Object>
            <mx:Object>
            <mx:name>Kiran</mx:name>
            <mx:pass>Keyboard</mx:pass>
        </mx:Object>
    <mx:ArrayCollection>
    This is my DataGrid
    <mx:DataGrid dataProvider="{arraycoll}" x="329" y="199" width="300" height="300" visible="true" >
    public function SearchData():void
    arraycoll.filterFunction = doFilter;
       private function doFilter(item:Object):Boolean {
                    var searchString:String = myTextIp.text.toLowerCase();
    // Need logic here
    <mx:TextInput id="myTextIp" name="SeacrhName"  change="SearchData()">
    For example if the user presses Ra on to TextInput then i want to display only as Ravi on to DataGrid .
    Please help .

    Hi,
    Try this
    private function doFilter(item:Object):Boolean
         var searchString:String = myTextIp.text.toLowerCase();
         if (item.name.search(searchString) == 0)
         return true;
              else
         return false

  • After I select a help topic menu, the video does not play.

    I recently purchased and installed PS 11 elements and Premiere elements.  When I go to the help screen and select a topic, the video of that topic will display, but the video is black and will no instruction plays.  Any ideas?

    I recently purchased and installed PS 11 elements and Premiere elements.  When I go to the help screen and select a topic, the video of that topic will display, but the video is black and will no instruction plays.  Any ideas?

  • How to display selection screen of logical database on a screen

    Hi Experts,
    I create a screen 100, how do I display a selection screen of logical database on this screen.
    Thanks!
    Anthony

    hi
    if u are making HR report then goto attribute -> Logical database -> write PNPCE to create in build selection scree.
    regards,
    Abhilash

  • How to display selected value in MessageChoice

    HI,
    I have a messageChoice on my Update screen. I need to display the selected value when the user comes to update the data on the screen. In the Process Request when i am printing the stmt
    System.out.println("The type of bean is PortletItemID::"+webBean.findIndexedChildRecursive("PortletItemID"));
    The output is The type of bean is PortletItemID:: OAFormValueBean
    How can i set the value that is coming from database in order to show the selected value in the message choice when the user is coming to the screen for updating the data.
    Thanks,
    Mohammadi

    Hi Tapash,
    In my case, i have mentioned the value in picklist View Definition ,picklist display attribute and picklist Value attribute. Where should i be providing my database value so that i can compare and display it as selected value.
    Thanks,
    Mohammadi

  • How to display Calender Please help

    Hello i am new to Java Programming not much experienced. Actually i wanna display a calender on screen. The basic idea is to find what day of the week the first of the month is and print blank columns for the days of the week before the month begins. Then, print the numbers from 1 to the end of the month, starting a new row after you get to the last day of each week.
    Here is the out put i am expecting
    C:\> java CalendarPage 6 2007 //Here in command line arguments 6
    // (Month June) and year 2007 is given.
    June 2007
    Su Mo Tu We Th Fr Sa
    1 2
    3 4 5 6 7 8 9
    10 11 12 13 14 15 16
    17 18 19 20 21 22 23
    24 25 26 27 28 29 30
    C:\>java CalendarPage //if no command line arguments are provided
    //the current month and year will be displayed
    May 2006
    Su Mo Tu We Th Fr Sa
    1 2 3 4 5 6
    7 8 9 10 11 12 13
    14 15 16 17 18 19 20
    21 22 23 24 25 26 27
    28 29 30 31
    Please Tell me how can produce such ouput. Your Help is always appriciated.

    this might help,
    to add calendar help you need to set the following attributes for the inputfield :
    type = 'DATE' showHelp = 'true'

  • How to display Selection screen on Web for RSCRM_BAPI

    HI,
    For a customer we want to create the possibility to extract data from BI2004s to other systems, therefore we want to use RSCRM_BAPI.
    Thing is that we want to provide the possibility for them to enter selectioncriteria, but we don't want them to log on using the Gui.
    We want to use the VC to create an interface cockpit.
    question is how we can allow users to use selectioncriteria but:
    variants can not be used
    TVARV can not be used
    is there any way to capture the selection screen and to display it on the web/VC?
    Anyone ever did this?
    Tnx
    rogier

    Gili.
    thank you for your quick reply,.
    Reason why we are looking into the RSCRM_BAPI is due to the layout
    requirements of the extract. the recieving systems requires specific layouts. If we do this with the infospoke we will have to use a BADI to perfom complex transformations which will need additional knowlegde (of BADI's) of the support organisation whereas with RSCRM_BAPI they can adjust the query.
    and as far as i know you can not define the variable input via the web for open hub.
    Grtz
    rogier

  • How to display selected attributes

    In BC4J +UIXML ,Using <setRegion> We can display automaticly all of the attributes of a ViewObject.But how to select some of them to display?
    not:
    <bc4j:region automatic="true">
    <!-- the stamp for each attribute -->
    <bc4j:attrStamp>
    <bc4j:messageInput readOnly="true"/>
    </bc4j:attrStamp>
    </bc4j:region>
    PacsDemonstrationId 43548
    PacsDemonstrationCode INN I
    PacsDemonstrationName Innere 1
    I dont need the first Pacs...Id here. how can I do it?
    Thanks
    Yong GE Germany

    2 ways:
    - replace the b4cj region and attrstamp stuff by single messageInput tags for each desired attribute.
    - define the viewobject in the bc4j application module with only the attributes necessary.
    i would recommend the latter because this is usually part of the business logic.
    trevi

  • How to Display Selection Screen on Container.

    Hi
    My Requirement is I need to create one Module Pool and inside this Module Pool. I need to display one Selection Screen through Container.

    The easiest way is to define your selection screen in the TOP include of your module pool.
    Then call the selection screen.
    Selection Screen
    selection-screen begin of screen 1010 as window title text-001.
    selection-screen begin of block b1 with frame title text-002.
    parameters: p_vornr type resb-vornr,
    p_refno(20) type c,
    p_plnid type zplcfg-plnid as listbox visible length 20,
    p_sorts type c as listbox visible length 20.
    selection-screen begin of line.
    selection-screen comment (20) text-004.
    selection-screen position 33.
    parameters: p_order as checkbox default 'X'.
    selection-screen end of line.
    selection-screen end of block b1.
    selection-screen end of screen 1010.
    Now call the selection screen.
    call selection-screen 1010.
    if sy-subrc = 0.
    perform get_production_orders.
    perform process_orders.
    endif.

  • How to display context-sensitive help in  frameset?

    When the help is generated by Robohelp, there is a primary
    file named by default as 'Web_Interface_On_Line_Help.htm" that
    opens the entire help window, with a left pane and a right pane.
    The left pane has the TOC and Index, and the right pane has the
    content of the page, displayed in frameset.
    A separate html page is generated for each page written in
    help and saved in folder the help/user it relates to .
    When I call one of these pages using map id and following
    javascript function
    <a
    href="javascript:RH_ShowHelp(0,'Web_Interface_On_Line_Help.htm>WithNavPane',HH_HELP_CONTE XT,189);">
    <font color="#0000FF">Help</font></a>
    The left pane has the TOC and Index, and the right pane has
    the content of the page, displayed in frameset.
    Everything is ok till this stage but when I click on one of
    the links in left pan, only the content of the page opens in new
    window with "show" link at the top of the page.....
    Am I missing something?
    Thanks in advance

    Do you already have projects in multiple languages?
    Normally, you create the project in the main language and set context sensitivy. Then you send the project to the translation agency and they send you the translated projects. Then you generate the different language version. The application must then point to the correct directory with the help for that language.
    This answer is kind of high level. For information on context sensitivity in general, see: http://www.grainge.org/pages/authoring/calling_webhelp/calling_webhelp.htm
    Greet,
    Willam

Maybe you are looking for

  • Boot Camp and XP on 3rd Drive

    I have a MAC PRO with 4- 300GB drives. Is it possible to use boot camp for windows XP on Drive 3? I have tried it once and when xp asks to shut down and restart it tries loading xp on the main drive (drive 1) where my OS system resides. AM I trying t

  • How do I print a larger document on smaller paper without it resizing?

    I have a document that will print 8.5x11" when I submit them to the printer.  The printer asked me to set them up on 8.6x11" and the extra .1" will be cropped.  I'm printing them on my printer to see what they will look like, but it keeps resizing so

  • HT202118 Latest Apple TV update will not install

    I tried both methods listed here on my 3rd generation, but still fails even when hooking up to the Mac. Apple TV (2nd and 3rd generation): Restoring your Apple TV - Apple Support

  • Invoice Revaluation Data on a cut off date

    Hi all Client have run revalation programme for a month and next month the previous month revaluation was not reversed and new month revaluation was run now the balances are out i need query to check one specific liability account and all invoices pr

  • How do I create a repo on a local folder

    I use FaunOS which is a live version of Arch.  The build is somewhat outdated but at any rate, Sometimes I need to install or upgrade a package for a session, but do not necessarily need to save it in the squashfs overlay. i copied the files out of /