AJAX - multiple values - help with code

Hi all

My code is probably wrong, however, I don't know where is the problem. I'm not good with programming and copied the example of oracle.com and changed... I hope you guys can help me. Here's what I have:

A selection list: P4_DOBJ1_NR (the user selects something in the DataObject table DOBJ_NR)
A screen as text element: P4_NAMSP1
Another exhibit as part of text: P4_DOBJ_NAME1


Here is my code:



Header HTML for my select list attribute setting:

OnChange = "JavaScript:getDOBJ1Info (this); »



The header of my page HTML:

< script type = "text/javascript" >
function getDOBJ1Info (filter)
{
var xml = null;
get var = new htmldb_Get (null, $v ('pFlowId'), 'APPLICATION_PROCESS is GETDOBJ1Info', 0);
Get.Add ('GOBJ1NO', filter.value);
RET = get.get ('XML');
If (ret)
{
var oneItems = ret.getElementsByTagName ("NAMSP");
If (oneItems)
{
var onedisplay = document.getElementById ("P4_NAMSP1");
onedisplay.innerHTML = oneItems [0] .getAttribute ("VALUE");
}
var twoItems = ret.getElementsByTagName ("DOBJ_NAME");
If (twoItems)
{
var twodisplay = document.getElementById ("P4_DOBJ_NAME1");
twodisplay.innerHTML = twoItems [0] .getAttribute ("VALUE");
}
}
get = null;
}
< /script >


An application object, called: GOBJ1NO



And the application process:

DECLARE
Emmanuel VARCHAR2 (100);
vTWO VARCHAR2 (100);
BEGIN
owa_util.mime_header ("text/xml", FALSE ");
HTP.p ('Cache-Control: non-cache');
HTP.p ('Pragma: non-cache');
owa_util.http_header_close;
HTP. PRN ("< DATA > '");
SELECT NAMSP, DOBJ_NAME IN Emmanuel, vTWO OF DATAOBJECT WHERE DOBJ_NR =: GOBJ1NO;
HTP. PRN ("< a VALUE ="' |) Emmanuel | ("" > < / ONE > ');
HTP. PRN ("< TWO VALUE ="' | vTWO |) ("" > < / TWO > ');
HTP. PRN ("< / DATA > '");
EXCEPTION WHEN OTHERS THEN
HTP. PRN ("< a VALUE =" error"> < / ONE > ');
HTP. PRN ("< TWO VALUE =" error"> < / TWO > ');
END;

Your process returns an XML document with the structure


    value one 
    value two 

but you try to retrieve the item named "NAMSP".

so try to chang to:

var oneItems = ret.getElementsByTagName("ONE");

You will find fantastic examples on the web site of Denes Kubicek:
Try this url:
http://Apex.Oracle.com/pls/OTN/f?p=31517:106:1074750275898234:no

HTH
Thomas

Tags: Database

Similar Questions

  • AJAX Multiple form sent with attachments.

    Hi everyone and everyone

    I have a problem with a form when using ajax, that I can't seem to download the attachment.

    < b >

    < td > < label for 'FileAttachment' = > attach a file (250Mb limit) < / label > < br / >

    < input type = "file" name = "FileAttachment' id = 'FileAttachment' class ="cat_textbox"/ > < table >

    < /tr >

    Well that's not exactly true, but if I use the standard form of BC FormProcessV2 with ajax, this is no a upload of files.

    But if I put this small piece of code in the validation form ( If (theForm.FileAttachment) theForm.FileAttachment.value = theForm.FileAttachment.value ) then the files download correctly ONLY I get the redirect to a page with this:

    {'FormProcessV2Response': {'success': true, "entityId": "28589333", "objectTypeId": 'Business', 'objectId': '4686492', 'message': "< table class =------'tabledefault\' > < tr > < id = td------"title\"> < strong > summary of submitting a web form: < \/strong > < attention / > <!-IP address: 27.252.113.60--> < \/td > < \/tr > < tr > < id = td------'name\' > < strong > your name < \/strong > < attention / > Daniel Telfer < \/td > < \/tr > < tr > <"}} TD ID =------'email\' > < strong E-mail address > < \/strong > < attention / > < a href =------"mailto:[email protected]\" > dtug.co.nz < \/a > < \/td > < \/tr > < tr > < td = id-'casenumber\' > < case number > < \/strong > < attention / > 4682 < \/td > < \/tr > < tr > < td > < attachment > < \/strong > < attention / > .pdf (31.06 KB) < \/td > people... {{"Deleted... < \/tr > < \/table > < \/td > < \/tr > < tr > < td = id------"innerform_95487\"> < table class =------"tabledefault\"> < tr > < id = td------"CAT_Custom_293_957\"> < strong > upload your CV < \/strong > < br------/ > < \/td > < \/tr > < \/table > < \/td > < \/tr > < \/table >"}}

    I can also do that and ( If (theForm.FileAttachment) theForm.FileAttachment.value = theForm.CAT_Custom_264793_95487.value; ) I want to do but also gives the above error. Even if when I go on the case of the file are there.

    I need to do this because the customer wants to be able to click on these files and open them and simply expanding the field of CRM database gives a url component and the customer has problems with this when they want to show files (having to copy and the paste in the url especially when the url is incorrect because bc changes it in the CRM page without being in edit mode. PLEASE ADD THIS ADOBE! a FILE LINK is the same one the case of linked files.

    Extend CRM CV image.jpg

    I also want to do this because I want all the details of the client on the same page and thus need to use ajax to send two forms at the same time that works as long as I do not download a file, a way works, but I get an error and the other, that files don't no download and no mistake. ADOBE PLEASE USER DETAILS FORM WOULD BE GREAT FOR IE. name, username, password etc.

    I try to keep things as simple as possible for the customer and the customers. I'm so close but so far away.

    (1) is - anyone else know if ajax must submit the images automatically or there at - it a necessary addition code?

    (2) does anyone know why my validation code works, but gets an error in ProcessFormV2.aspx (unless it's a hack, I know this)?

    (3) I am going about this completely wrong and there is a better way.

    Any HELP! would be great?

    The code to ajax for a file transfer on is not supported in British Colombia.

    So you can send files to BC normally, you can ajax submit using JSON but that JSON will not process files.

  • Help with code to insert, and then update the form table.

    I have a form where a user can add a new record in a table. Here is the procedure for recording button that works very well. But I call another procedure for updating the table with an "if" statement "The SQL code that I use works fine to get the data I'm looking for when I run it in SQL, but the 'if' statement updates all records in the table to ' n ' when some should be"Y". I am new to Oracle forms development (3 months) so it's probably very simple, but I'm stuck and need to get this finished form. Any help is greatly appreciated.


    SAVE BUTTON TRIGGER PROCEDURE:*.

    PROCEDURE SAVE_MM_1099_ADD IS

    MM1099_NO NUMBER (10);
    NUMBER OF THE YEAR (4);
    NUMBER OF NOTICE_SEQ_NO (10);
    NOTICE_NAME VARCHAR2 (30);
    TIN_FROM_DB VARCHAR2 (23);
    TSDI_DB VARCHAR2 (1);
    IRS_NTYPE VARCHAR2 (10);
    IRS_NDATE VARCHAR2 (10);
    BU_WH VARCHAR2 (1);
    NO_TIN_NAME VARCHAR2 (1);
    DUP_IRS_NOTICE VARCHAR2 (1);
    G1_IRS_NOTICE_3YR_2BS VARCHAR2 (1);

    B_SAVE_ADD boolean;

    Start

    IF MM1099_NO IS NOT NULL THEN

    insert into MM_1099
    (
    MM1099_NO,
    YEAR,
    NOTICE_SEQ_NO,
    NOTICE_NAME,
    TIN_FROM_DB,
    TSDI_DB,
    IRS_NTYPE,
    IRS_NDATE,
    BU_WH,
    NO_TIN_NAME,
    DUP_IRS_NOTICE,
    G1_IRS_NOTICE_3YR_2BS
    )
    values
    (
    MM1099_NO,
    YEAR,
    NOTICE_SEQ_NO,
    NOTICE_NAME,
    TIN_FROM_DB,
    TSDI_DB,
    IRS_NTYPE,
    IRS_NDATE,
    BU_WH,
    NO_TIN_NAME,
    DUP_IRS_NOTICE,
    G1_IRS_NOTICE_3YR_2BS
    );


    : system.message_level: = '5';
    Commit_FORM;
    : system.message_level: = '0';

    END IF;

    UPDATE_NUMOCCURTIN;

    END;

    PROCEDURE CALLED:*.

    PROCEDURE UPDATE_NUMOCCURTIN IS

    CURSOR c1 (NUMBER NUMOCCURTIN) IS
    SELECT THE YEAR, TIN_FROM_DB, COUNT (TIN_FROM_DB) AS NUMOCCURTIN
    OF MM_1099
    TIN_FROM_DB GROUP, YEAR
    SEEN (COUNT (TIN_FROM_DB) > 0);

    CR1 c1% ROWTYPE;
    number of v_recs;
    NUMBER OF NUMOCCURTIN;

    BEGIN
    v_recs: = 0;

    OPEN c1 (NUMOCCURTIN);

    loop

    Fetch c1 into cr1;
    When the % notfound c1 or c1% rowcount output > v_recs;

    IF cr1. NUMOCCURTIN > 1 THEN

    UPDATE MM_1099
    SET DUP_IRS_NOTICE = 'Y ';

    ON THE OTHER

    UPDATE MM_1099
    SET DUP_IRS_NOTICE = 'N';

    : system.message_level: = '5';
    commit;
    : system.message_level: = '0';

    END IF;

    v_recs: = v_recs + 1;

    END LOOP;

    CLOSE c1;

    END;

    For any help or suggestion will be greatly appreciated.

    IF cr1. NUMOCCURTIN > 1 THEN

    UPDATE MM_1099
    SET DUP_IRS_NOTICE = 'Y ';

    ON THE OTHER

    UPDATE MM_1099
    SET DUP_IRS_NOTICE = 'N';

    : system.message_level: = '5';
    commit;
    : system.message_level: = '0';

    END IF;

    There is no WHERE condition in your update, so always update you all THE RECORDS in your table. I guess it must be something like:

    UPDATE MM_1099 SET
      DUP_IRS_NOTICE = 'Y';
     WHERE TIN_FROM_DB=cr1.TIN_FROM_DB
       AND YEAR=cr1.YEAR
    

    Some general order questions about your code:
    Where your variables for your insert statement are filled? looking at your code they will always be NULL.
    Be careful when using the variable exactly as the names of column names. This may cause unexpected behavior (for example when it is used in the UPDATE statements).
    Why engage in the other branch, but not in the branch so?

  • help with code

    I'm trying to get the code to run after that he completed the film at the end and display results on a map of contours. The problem is that I can't seem to end. It restarts the film after reaching 4000ms. can I change the last loop to loop for?

    Reggie, my man, your code is off-the-line graphs and unscaleable. Maybe you agree with this, however.

    Your last while that the loop will not stop until you press the Stop button. If you want to stop once the verification in the range displays False, you can add an Or operator in there (with a Not operator too probably) to get your loop to stop.

    And what happens with your first loop? You have a time VI which stops the loop, but you use it by checking if target time is less than the time elapsed. Why not just release the Boolean value of elapsed time for that? You also have the default set to 1,000 seconds, which is long... I hope that you can hear 1000ms.

  • Help with code for counting

    Hi I am new to coding and, at school, they give us builders of the project before assignment, they are usually much more difficult but for the practice and trial and error. This one I'm completely lost. They provide a code for counting MEAC, a load of cookie that was reversed when you press on and the user needs to count spilled cookies and enter the number. The wrong number does not work so it has a loop function in I think. Here's the code that provided things needs added.

    Stop();

    var numberOfCookies:Number = 0;

    startBtn.addEventListener (MouseEvent.CLICK, getCookies);

    function getCookies(Event:MouseEvent)

    {

    numberOfCookies = (Math.floor (Math.random () * (10)) + 1);

    var n: Number = 0;

    }

    Now the long instructions on what needs to be done.

    1. Complete the getCookies function by typing the following code before the closing brace on the right:
      1. Add a line under the last line of the code and before the right fence reinforcement to create a while loop that loops while n is less than numberOfCookies.
      2. Define all looped as follows and place the code inside the left and right hooks:
        • Type a line that creates a variable named cookieInstance that has a cookieMC data type. Create a new instance of the cookieMC.

    Note: cookieMC is the video clip that contains an image of the cookie.

    • Add another line of code that uses the method addChild to add cookieInstance to the display list and places it in a random place.

    Hint : Your text contains an illustration that represents the format of line addChild . The values of x must be 200 and 20, and values there must be 150 and 220. This will ensure that the cookies will be overlapping with the cookie jar!

    • Add another line of code that increments n to 1.
    • Check both the time watching the block of code and the function block getCookies end of code with right brace (}).
    • After the right brace for functions getCookies, typed an event listener that calls a function when it is clicked on the goBtn object. Name of the function checkNumberTyped.
    • Definition of the function as an if-else statement. If the number entered by the user in the input box (checkBox.text) equals the number of cookies (numberOfCookies) generated by the random function, have the playhead go and play frame 2; or else have the playhead go and play frame 3.
    • Check the format of syntax and code auto.
    • Click on frame 2 in the timeline. Click on the area of dynamic text under the heading on the stage and give it an instance name of right.
    • Click on the image on the layer 2 actions. Then view the Actions Panel.

    Note : The code in line 2 adds an event listener that "listens" for an event ENTER_FRAME and appoints a (correct) function. The causes of event frame enter the named function correct to run when the playhead moves to frame 2

    1. Type the line of code between the braces ({}) left and right which takes the value in the numberOfCookies variable and it changes to string data type and then assigns it to the dynamic text box named right.

    Hint : the format to change a digital var to a string is: Textboxname.text = String (var);

    1. Check the format of syntax and code auto.
    2. Click on the image 3 on the Timeline and click on the area of dynamic text on the stage and give it an instance name of the lot.
    3. Click on the image on the layer 2 shares and copy the code for the listener of events and the called function OK. Click on the image on the layer 3 actions and paste the code on a new line after stop();
    4. Change the code pasted into the image 3 on the layer actions so the function name is incorrect and does not name text box.
    5. Check the format of syntax and code auto.
    6. Test the animation several times by entering the correct and incorrect numbers for the number of cookies displayed.

    Now, it's my first Flash class, and I've been in 7 weeks, I feel it is a lot to know already, but if anyone could tell me what I need to add and why would I have a great understanding until the project that happens I need this practice will last.

    the following code fills the coding part of your task.  you will need to pick up line "check the syntax and the auto format code".

    ///////////////////

    Stop();

    var numberOfCookies:Number = 0;

    startBtn.addEventListener (MouseEvent.CLICK, getCookies);

    function getCookies(Event:MouseEvent)

    {

    numberOfCookies = (Math.floor (Math.random () * (10)) + 1);

    var n: Number = 0;

    While (n<>

    var cookieInstance:cookieMC = new cookieMC();

    addChild (cookieInstance);

    cookieInstance.x = 20 + Math.floor (181 * Math.random ());

    cookieInstance.y = 150 + Math.floor (71 * Math.random ())

    n ++ ;

    }

    }

    goBtn.addEventListener (MouseEvent.CLICK, checkNumberTyped);

    function checkNumberTyped(e:MouseEvent):void {}

    {if (Number (CheckBox.Text) == numberOfCookies)}

    gotoAndPlay (2);

    } else {}

    gotoAndPlay (3)

    }

    }

  • How to set multiple values clustered with local variable?

    Hi all

    Okay, I made my way through Labview for everyone and have some basic concepts down. I can see with a cluster, if acting directly on it, you can ungroup, change values, rebundle, etc..

    I try something a little more complex... and just do not know how to start on this.

    I have a menu menu ring set. I created this with a typedef, with 4 values.  I used this typedef 7 times, more a few LED bool, in a cluster. I made this cluster a typedef.

    Therefore, in my main vi, I started designing, I put an example posted here... and inside, I have two instantiations of the typedef cluster commands selection of left and right.

    I dropped in this vi, a copy of the menu ring typedef (same typedef as in clusters, values) called reset all tubes.

    Now, I am trying to understand how, with an event to change the value to 'reset all the tubes'... that I can start with the left switch and change all tubes (here is the menu ring selector) to the same value as what has been selected with the ring of menu 'Reset all the tubes'.

    I created a local variable for the selector on the left. It is configured to read values. (I'll be doing the same thing with the right too, but just to start with the left).

    In the examples I've seen where access to a cluster, you could ungroup the cluster... browse and change the values... maybe pull out all the "hits" in a table and go through to update the values.  And when you group or ungroup the bunch... you can see the values, etc., when you stretch on the block diagram.

    With the local variable... I do not see to 'stretch' it as I expected... so I can access the values "tubes"... and all at the value of the 'reset all the tubes' ring menu value.

    Someone can put me on the path on the best way to do... or is it a component structure I'm missing here?  Am that I on the right track everything first here?

    It seems pretty basic to me, but miss me just something here on the way to start...

    Thank you in advance,

    Cayenne

    You can't do this with a for loop of how the Department is structured, but why make it so complicated?  Just group the new value in the cluster, as shown below:

    If you do not want to use a loop for example, consider the restructuring of your cluster.  Group ring and a Boolean value in a cluster, and then unmold 7 of those in the cluster of selector.  Then you can use 'cluster to the table' and 'picture of cluster' for all elements of the external cluster will be of the same type.

    Also, be careful when using rings in the form of type definitions.  You probably want to use an enumeration instead.  The elements of a ring do not update the when you update the type definition because they are considered to be cosmetics. the elements of a definition of enumeration type update, because the elements of an enumeration are considered as part of the data type.

  • Help with code 800401154

    I can't get my updates? all I get is error code 800401154 Please HELP

    Hi, Ray MrJoesmokeyBailey,.

    1. the updates you are trying to install?

    Step 1:

    You can read the following article and try to reset the Windows Update components and check.

    How to reset the Windows Update components?

    Step 2:

    If you're still having problems, then try to run you can also try running the system update readiness tool and check if you can install the update.

    What is system update readiness tool?

    Hope this information is useful.

  • Need help with code signing.

    Hello

    I did an application that requires a code signature because I use the function 'Automatic Execution at startup' (this is what I was told).  I use not all restricted classes.

    So, I asked for a key to the RIM and received.

    I have received only a single file named "customer-CPR-# .csi" (the e-mail talked about three files however: RBB, CPR, RRT).  Nevertheless, I followed the instructions and managed to install this .csi without error (I received a confirmation e-mail).

    Now, I want to sign my code...

    I tried using "build - request Signatures ' in my Blackberry JDE and this displayed:

    javaw.exe - jar "C:\Program research in Motion\BlackBerry JDE 4.2.1\bin\SignatureTool.jar" f d "C:\Documents and Settings\johndoe\Local Settings\Temp\RIMSigTool65120.tmp"

    However, nothing happens (this jar file is there though).

    I looked beyond and found a 'Signature tool' under "Component of the Blackberry JDE 4.2.1 Package" in the "Programs" menu

    When I run this, I get invited to one. COD file.  I select my and then I see a window that shows six times my. File of COD that says that my COD file does not require a signature.

    Also, looking around this forum, I have seen some people saying a. CSL file is necessary... but I do not have this file in my project directory.

    So to make a long story short, I'm a bit confused on what do I do next for my application run at startup on the Blackberry.  How should I sign it?

    Thanks for your help!

    Please ensure that you have a current project, when you select apply Signatures from the Build menu.  The only assets of signs SignatureTool projects, so if no project is active, nothing will happen.

  • need help with code 43 windows7 hp all-in-one2050 j510

    Code 43 felmeddelande

    Windows 7 har stangt av printern.

    Tell me WHY "?"

    Var snall och help till att fixa felet.

    Tack

    Hello

    Please select your language from the drop-down menu above to post your question in the language of your choice. The forum in which you've posted is for English only. If you can't find your language above, support for additional international sites options are by following the link below:

    http://support.Microsoft.com/common/international.aspx

    Hope this information helps.

  • help with code of favicon does not

    I can't get my favicon to work here is my current website www.sqtlimited.com

    I had the record for PS and made my favicon 16 x 16 saved as favicon.ico in the same folder as all my other stuff site Web

    not downloaded to the server all in the same place no subfolder.

    Here's my course last line of code is favicon

    < head >

    < meta http-equiv = "Content-Type" content = text/html"; Charset = UTF-8 "/ >"

    < title > SQUARE Limited < /title >

    < style type = "text/css" media = "screen" >

    @import url ("menu bar - 1.css");

    < / style >

    < script language = "JavaScript1.2" type = "text/javascript" src = "mm_css_menu.js" > < / script >

    < link rel = "shortcut icon" href = "' / favicon.ico" type = "image/x-icon" / > "

    < / head >

    What works on my site is

    I have not a / at the end and my ico file is located in the root with the index.htm file

    Yes, you must sometimes do a 'reload' or clear history of cache for the changes to appear

  • Need help with Code

    Hi, I need help in answering this question...

    1. to list separate them that visit many of the sites.

    The code that I currently displays holidays and sites, but I need if it will show the top 3 holidays than most visit sites.

    Select 'IT220_DETAILS_SITES_VISITED '. "' SITE_NAME ' as 'SITE_NAME ',.
    'IT220_HOLIDAY_DETAILS '. "' DESCRIPTION_OF_HOLIDAY ' as 'DESCRIPTION_OF_HOLIDAY '.
    of "IT220_SITES_VISITED" "IT220_SITES_VISITED"
    "IT220_DETAILS_SITES_VISITED" "IT220_DETAILS_SITES_VISITED"
    "IT220_HOLIDAY_DETAILS" "IT220_HOLIDAY_DETAILS".
    where 'IT220_SITES_VISITED '. "" CODE_OF_HOLIDAY_PACKAGE "=" IT220_HOLIDAY_DETAILS. " "" CODE_OF_HOLIDAY_PACKAGE ".
    and "IT220_DETAILS_SITES_VISITED". "" CODE_OF_SITE "=" IT220_SITES_VISITED. " "" CODE_OF_SITE ".
    order by 'SITE_NAME '.

    813948 wrote:
    I realize the question is actually just holidays to appear that the sites the most.

    select  "DESCRIPTION_OF_HOLIDAY"
      from  (
             select  "IT220_HOLIDAY_DETAILS"."DESCRIPTION_OF_HOLIDAY" as "DESCRIPTION_OF_HOLIDAY"
               from  "IT220_SITES_VISITED" "IT220_SITES_VISITED",
                     "IT220_DETAILS_SITES_VISITED" "IT220_DETAILS_SITES_VISITED",
                     "IT220_HOLIDAY_DETAILS" "IT220_HOLIDAY_DETAILS"
               where "IT220_SITES_VISITED"."CODE_OF_HOLIDAY_PACKAGE"="IT220_HOLIDAY_DETAILS"."CODE_OF_HOLIDAY_PACKAGE"
                 and "IT220_DETAILS_SITES_VISITED"."CODE_OF_SITE"="IT220_SITES_VISITED"."CODE_OF_SITE"
               group by "IT220_HOLIDAY_DETAILS"."DESCRIPTION_OF_HOLIDAY"
               order by COUNT(*) DESC
            )
      where ROWNUM <= 3
      order by "DESCRIPTION_OF_HOLIDAY"
    /
    

    SY.

  • Laptop HP 2000: Please help with code

    I have a hp and asked power on password or password administartion. The disabled system code is 55614723

    Try entering the following unlock code:

    40772305

  • Help with Code to wireless printer. I have a HP Deskjet F4580

    Does anyone know how do I reprint my wireless HP Deskjet F4580 code?

    Thank you

    abcfun32

    To enable web services or reprint the code of the printer, you need to enter the printer EWS. To get the IP address of the printer you need to hold the scan button and it prints the network configuration to get the IP address of the printer.

    1. Enter the printer's IP address in a browser.
    2. Select the Web Services tab.
    3. on the left side, select print info page.

    Let me know how it goes.

  • Help with code EAN-13 barcode

    I make a label of product in InDesign and have to put in a bar code. These guidelines meet the code bar:

    http://www.gs1au.org/assets/documents/info/technical/fact_sheets_2014/Fact_Sheet_1_EAN_13 _ Bar_Code_Symbol_Specifications.pdf

    Essentially, the figure should be 22,85 mm in height and 31,35 mm wide.

    Because it is not possible to generate barcodes internally in InDesign and specialized plugins are expensive, I decided to use a web service to generate the figure. I settled on this one:

    http://barcode.TEC-it.com/?group=BCGroup_EAN & Barcode = EAN13

    The height of the figure is not standard, but if all goes well, to use past practice.


    My problem is: when I place the figure in InDesign, I can't ever be sure, it would print to the appropriate size. I know that if I go to file > Place and do a simple click , I get the image at 100%. But even in this case, the results are all over the place. I guess I could manually change the sovereign (in the mode of a millimetre), but it's tedious and generally does not seem the way forward. Is there an easier way, I've been away?

    If I read the link you posted barcode dimensions must be w = 37.29 mm x h = 25,93 mm. It was actually an extension in Indesign that generates bar codes. You can go to the window/Extensions/Adobe Exchange (I use Indesign CC 2014) and research of EAN bar codes generator. What exactly do you mean by "the results are all over the place."

  • Best way to manage multiple windows help

    Hi all:

    I work with X 5 to create help for a large modular application. I have a single aid project, but want to deliver content for help only for the specific modules used by clients. I am attemtping to create multiple windows help with a window main containing helps for deliverables standard and other windows containing help for specific modules. What is the best way to achieve this using a single project. Or do I have to maintain several projects?

    I tried to use custom windows, but there are some limitations. I created a new file for a custom hhc window manually and it works fine. But I can't open the custom window by clicking on a book in the table of contents (which are what I want) the main window, but can do so by clicking on a subject. Also, I can't assign topics by separate default for each custom window. In addition, when I click a hyperlink in a custom window that links to a topic in the main window, the theme of the main window display in the custom window but it is not in the table of contents of the custom window, it's awkward.

    Help, please!
    Romeo Coutinho

    From the point of view of the user a merged set of help files is probably the best solution. Use global windows of the comprehensive help system is displayed in a window and displays only the topics for modules installed (if you can get your installation meets your wishes people that is ;-)).

    Several projects handling is more complicated to manage a large. Each help topic only stops in a single project; If you want to create or update the help for the XYZ_1 module, you open the project XYZ_1. If you want to change something in the master project, you open the master project. After the edition of a project, you simply compile this module and nothing else.

    The only thing you need to learn are the peculiarities of the help compiler about merged projects. See http://www.helpware.net/htmlhelp/how_to_merge.htm for a good description of these folds.

    -Dirk Bock

Maybe you are looking for