Components placement

the placement of components in visual editor and when i preview it in web browser looks different. Any idea?

currently, i am using Sun Java Studio Creator 2004Q2 Update 9 (Build 051104)
The distance between the components are different.
For example:
in Visual Editor:-
[Button 1] [Multi Line Text Area]
in Web Browser:-
[Button 1][Multi Line Text Area]
In visual editor, i left some space between the 2 components but when i previewed it in browser, the 2 components seems to stick together.
I didnt use any grid panel and i am using grid layout as my page layout.

Similar Messages

  • Firefox 13.0+ bookmarked RSS feeds won't auto refresh

    Hello. Since Firefox 13.0 and above (up to the latest 17 pre alpha nightly) the feature that allows your bookmarked RSS feeds to be automatically updated is GONE. Previously popular browser.bookmarks.livemark_refresh_seconds (I had to enter this value) either broken or does not exist in the latest FF versions, it is simply does not work.
    I've tried everything, starting from disabling add-ons to safe mode but nothing helps in solving this problem. Could you please tell if this is a bug or this feature is no longer supported in Firefox so I can stop bothering and switch to another browser
    Best Regards

    Yes, you now need to refresh the live feed items manually because live feeds now work as regular bookmarks.<br />
    Only the initial loading is automatic the first time you open a live feed bookmark.
    See:
    *http://mxr.mozilla.org/mozilla-release/source/toolkit/components/places/Database.cpp#1804

  • How to place event callback components and "main-VI" components in the same Front Panel?

    What I'm trying to accomplish:
    Place a .NET component, which generates events, and other standard LabVIEW components in the same Front Panel. The standard LabVIEW components should be updated when events are being generated in the .NET component.
    How I tried to solve it:
    Problem:
    The event callback code must reside in a separate event callback VI. In order to "pass the event up" to the main VI I tried to use a global variable. The interrupt does occur:
    but I was hoping that the string indicator would be updated when the event occurred, but it wasn't.
    Questions:
    What's the best way to solve what I try to accomplish? If I want to solve the problem on the picture above, how would I do it (it may not be the best solution, but I'm still curious what's wrong)? Please feel free to be over-explicit when replying as I am novice LabVIEW programmer. Thanks in advance for any help.

    There are two bundle functions for creating clusters. The function simply called Bundle operates almost exactly like the Build Array function I showed. The type of the output cluster depends on whatever you wire in as inputs. You don't have to supply a specific type parameter.
    The function called Bundle by Name takes in a specific type of cluster in the top input and allows you to fill in the values of that specific type of cluster. To create the specific type of cluster you want, you need to create a cluster of string references. Here's how to do that:
    Go to the Front panel and drop down an empty cluster shell.
    Go to the Refnum palette and drop down a Generic Control Refnum. Now here's a cool trick to turn that generic refnum into a string-specific refnum (a so-called strictly-typed refnum). Grab a string from the controls palette and drag it into the Generic Control Refnum. Once you drop it, you'll see the refnum change its icon to display a string picture.
    Make copies of this string refnum (as many as you need) and add it to the cluster shell.
    Now, if you're making specific types of clusters to work with, now is the absolute best time to learn about typedefs if you haven't already. It will save you hours and hours (if not days) of development time in the future. Trust me!
    Jarrod S.
    National Instruments

  • I cannot place components or measuring instruments

    Hello,
    I installed NI Circuit Design Suite (Student Edition) approximately a month ago as my course requires it for hand-in assignments. Two days ago it stopped allowing me to edit or place components or measuring intruments. When I installed it originally, I made sure to activate it as the professor had mentioned others had forgotten in the past. My NI License Manager also verifies this, saying that it is activated for my computer, so I have no idea what the problem could be. I have an assignment due on Tuesday, so help with this would be greatly appreciated. Thank you very much and happy thanksgiving!
    Robin
    Solved!
    Go to Solution.

    Before doing a re-install try checking the Global and Circuit restictions tabs to see if maybe some of the options there have been activated. This may cause this problem if they have been turned on. I can not verify this on my version since I don't have these options in Power Pro.
    Doing a re-install from the CD usually doesl not work as that only removes the core files. It leaves other files behind and information behind. So if something other than the core files are causing this it will still be there afterwards.
    Try doing this instead. Goto C:\Program Files\National Instruments\Shared\NIUninstaller and find the program call "uninst" Open it. A dialog box will appear with a list of programs on the left side. Select the program you want i.e. Circuit Design Suite 10.1 Pro to highlight it and then on the right side click repair. Make sure your CD is in the drive proir to clicking repair. This should re-install everything back, hopefully, to the way it was when it was first installed. It is still safe and won't remiove any saved circuit files. I use it as a last resort, but it seems your there already. I have had success in doing this to correct strange problems that seem to crop up out of nowhere.
    I hope this helps as I am running out of ideas
    Kittmaster's Component Database
    http://ni.kittmaster.com
    Have a Nice Day

  • My audio unit manager has gone, i cant scan it and all the components are in the right place, i just cant access my au manager at all in logic

    my audio unit manager has gone, i cant scan it and all the components are in the right place, i just cant access my au manager at all in logic
    any help please im going out my mind
    regards james

    Thanks for getting back to me, The AU manger was there, just when you treid to click on it, it just wasn't responding.
    But i had a scan thourgh google and found the answer, i removed the audio units cache and restarted it and all was good. I was really starting to get stressed over the matter but however i got to the bottom of it.
    Again thanks for replying
    Regards James

  • Automatic placement of components on to the JFrame.

    Hello I want to know if it is possible to have a button in my program and when this button is pressed by the user it automatically places about 3 JFormattedtextfields on to the JFrame? If so how do I go about writing code for this?

    Well I am trying to have a check box so that only selected components are deleted. At the moment I am trying to item listener to the check box. I had a look at the checkbox demo and I did the exact same thing but mine does'nt seem to work I don't want to proceed with the remove clients method before this is sorted out. Can someone please point out my mistake to me and suggest ways to correct it.
    import net.miginfocom.swing.MigLayout;
    import javax.swing.*;*
    *import java.awt.event.*;
    public class LayOut {
    //Labels to identify the fields
    JLabel currentLabel = new JLabel("Current");
    JLabel systemVoltageLabel = new JLabel ("Voltage");
    JLabel kVALabel = new JLabel ("KVA");
    //The button
    JButton addClients = new JButton("Add Clients");
    JButton removeClients = new JButton("Remove Clients");
    // the panel
    JPanel mainPanel = new JPanel();
    // the JFrame
    JFrame frame = new JFrame("Runtime test software");
    public LayOut() {
    mainPanel.setLayout(new MigLayout());
    mainPanel.add(addClients, "wrap");
    addClients.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    addClients();
    removeClients.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    removeClients();
    frame.add(mainPanel);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(500,500);
    frame.setVisible(true);
    public void addClients() {
    mainPanel.add(new JCheckBox());
    mainPanel.add(new JFormattedTextField(),"width 20:80");
    mainPanel.add(new JFormattedTextField(),"gapleft 30, width 20:80");
    mainPanel.add(new JFormattedTextField(),"gapleft 30, width 20:80, wrap");
    mainPanel.revalidate();
    mainPanel.validate();
    public void removeClients() {
    JCheckBox.addItemListener(this); // this is how it is done in the check box tutorial
    mainPanel.revalidate();
    mainPanel.validate();
    public static void main(String[] args) {
    LayOut l;
    l = new LayOut();
    }

  • 10.0.343 Upgrade - Unable to Place Components

    I have recently upgraded to v10.0.343 from 10.0.144.  I am now unable to place components in a new or previous file, whether off the toolbar (which has changed in appearance to blue buttons) or by right-clicking the circuit.  Thoughts?
    Thanks,
    David

    Hello David,
    Try the following KnowledgeBase:
    How Can I Reset the Multisim or Ultiboard User Interface to its Default Configuration?
    Let us know how this works.
    Regards,
    Fernando D.
    National Instruments

  • Using CSS to arbitrarily place Controls Components

    Hi there:
    I'm creating an app which loads in an arbitrary external SWF
    which contains an unknown set of components into its fluid layout
    (not absolute). This external SWF itself uses external CSS (SWF) to
    define things like Button icons, labels, etc., as well as bottom,
    top placement and so on.
    Things work just fine, but I would like my Components SWF to
    be fairly generic -- that is, I want to use any number of different
    external CSS SWFs to inform my Components' layout, while hardcoding
    as little as possible in my Components' MXML.
    As it is now, the order of Components' elements in the MXML
    determine the left-to-right (or r-to-l or top-to-bottom, etc) order
    in which they appear, as well as stacking order. Is there a way to
    assign a "weight" to the Components via CSS, so that I can have
    just one MXML base which includes all my components? That is, I
    want to avoid having a version of my app which is "button 1 is to
    the right of button 3", while another version of the app is "button
    1 is to the left of button 3".
    One App file, many CSS files?
    thanks!

    Aha!
    child index and circumventing the init are our
    friends!

  • How to place the components dynamically in page facets.

    I have created a page template
    Logo | Header | User Area |
    | | |
    Menu| Content Area 1 | Content Area 2 |
    | | |
    | | |
    | | |
    | | |
    | | |
    | | |
    | Content Area 3 | Content Area 4 |
    | | |
    | | |
    | | |
    Footer
    I am a new bee. i need to create a system that can allow users to configure the componets in the desired place holder place.
    And save their location so that it can load into the same place on login where it was saved earlier.
    Is there any one who can tell me how to do it.
    Tariq mehmood

    Are you talking about end users placing items in specific places or are you talking about developers placing items on your template in specific places?
    For end user runtime customization you might want to look into using MDS.
    See:
    http://download.oracle.com/otn_hosted_doc/jdeveloper/111demos/mds/mds.html
    http://www.oracle.com/technology/products/jdev/11/cuecards111/adf_set_18/ccset18_ALL.html

  • Place holder is coming after deletion of a components from live site page and distorted the alignmet

    Place holder is coming after deletion of a component from live site page and distorted the allignment in IE7. Please suggest.

    No need for alarm. There are several folks a day posting like threads. Most folks know these phishing attempts for what they are and merely delete with prejudice.
    To the bottom line... if you wish - and I am sure Apple will take notice - you should FORWARD the email to [email protected] and delete.
    CCC

  • CU Meeting Place Components

    Hi,
    I am currently designing a CU Meeting Place solution for a 250 user environment.
    I am thinking to have 2 nodes, one as Media Server and other one as Webex Node. Is it only requred for Meeting place deployment?
    Do i need to have a seperate instance of Meeting Director for Scheduling ? Is Media Server / Webex node has native support for scheduling ?
    Thanks and Regards

    Sameer,
    Are you talking about the MP conference manager plug-in to schedule meetings? If yes, it is not compulsory.
    The users can schedule meetings by logging into the web interface itself. The conference manager is just a user-friendly GUI interface to schedule meetings.
    Jyothi
    Please rate useful posts.

  • How to override HBox Layout to place components at Specific positions

    Hi ,
    I am using HBox as my Container for an Itemrenderer for a DataGridColumn .
    Below is the code .
        <mx:HBox id="peopleimages">
        <mx:Image id="delImage" source="MyImage.jpeg"  />
        <mx:Label name="Name">
        </mx:Label>
        <mx:Text id="UserTI" text="Kiran"  styleName="viewElementImage"  toolTipCreate="createCustomTip(data,event)"/>
        <mx:Button label="Edit" click="openPopUpWindow()"/>
        </mx:HBox>
    This is not looking good as the Edit buttons appears as soon as the TextInput Data  completes
    Is it Possible to place the Edit Button exactly at the Right Most Corner End  of a ataGridColumn .
    Please tell me . thanks

    Thanks , i will use spacers as specified .
    WIll this effect in performance , as i am unncesearly adding a new component .??

  • DID YOU KNOW?? - ABOUT ADVANCED COMPONENTS IN THE PALETTE??

    <br>
    Hi All,
    DID YOU KNOW??
    The IDE ships with the following Advanced Components in the Palette.
    These advanced components are a set of JavaServer Page markup tags for advanced users. The components have no visual appearance and are useful to developers with experience in JSP and JavaServer Faces technologies.
    * Encoding
    * Faces Action Listener
    * Faces Converter
    * Faces Validator
    * Faces Value Change Listener
    * Faces Verbatim
    * Link
    * Load Bundle
    * Markup
    * Meta
    * Parameter
    * Script
    Lets look at MARKUP component in more detail.
    The MARKUP Component
    You can drag the Markup component Markup component icon from the Palette's Advanced category to the Visual Designer to create a standard HTML tag. The Markup component enables you to insert HTML elements into the JSP page in places that HTML is not permitted.
    When you drop this component on a page in the Visual Designer, you cannot see it on the page until you set the tag property. You can see it in the Outline window and you can select it there to edit its properties in the Properties window.
    Use the tag property to specify the type of HTML element to insert. For instance, to insert an <hr> tag, set the tag property to hr with no angle brackets and select the singleton property .
    To provide compliance with XHTML, if the HTML element you are inserting is a singleton element, you must specify the singleton property, which causes a trailing /> to be generated in the rendered HTML. For example, the <br> element is a singleton element that must be rendered as
    to make it XHTML compliant.
    If you want to specify HTML attributes in addition to id and style for the element you are inserting, use the extraAttributes property.
    Learn more :-
    http://developers.sun.com/prodtech/javatools/jscreator/reference/docs/help/2update1/components/advanced_list.html
    We would like to know the following from you :-
    1) Are you using these Advanced Components in applications you are building? If so How and Where?
    2) Did you face any challenges while using them?
    3) Did you find any special usages/scenarios for using these components?
    Thanks for all your inputs and for joining in the discussion.
    K
    </br>

    What would you like in the documentation? Do you have specific questions about particular components? Do you want examples? What's missing from the online help at http://developers.sun.com/prodtech/javatools/jscreator/reference/docs/help/2update1/components/advanced_list.html?

  • RE : Creation of subcontrating PO - Components details

    Hi Experts,
    I am doing a subcontracting purchase order using BAPI - (Bapi_po_create1). But iam not able to update for the sub components of the materials. So, I opted for the PO creation first using Bapi_po_create1 and then using the FM Bapi_po_change iam changing the sub component details in the structure POCOMPONENTS available. PO is created successfully But still its not getting updated with subcontract details instead the system is bringing some standard values in the place of mat no., quantity, price , unit. but the return message is "Pur order changed".
    Note: For PO change iam passing the PO number generated above and the component details alone. That didnt work. Then I passed the header, Item and schedule details too still the same not geting updated but PO created.
    Please suggest.
    Thanks,
    Karthikeyan.

    Hi Karthi
    Use the below code
    loop at itab1.
    Reset values for next row
        if itab1-row ne gd_currentrow.
          append tab .
          clear tab.
          gd_currentrow = itab1-row.
        endif.
        case itab1-col.
          when '0001'. "PGNAM
            TAB-CO_CODE = itab1-value.
          when '0002'. "RONAM
            TAB-DOC_TYPE = itab1-value.
          when '0003'. "JVLEVEL
            TAB-DOC_DATE = itab1-value.
          when '0004'. "FTTYPE
            TAB-PURCH_ORG = itab1-value.
          when '0005'. "LANG
            TAB-PUR_GROUP =  itab1-value.
          when '0006'. "LTEXT
            TAB-VENDOR = itab1-value.
          when '0007'. "LTEXT
            TAB-PMNTTRMS = itab1-value.
          when '0008'. "LTEXT
            TAB-PO_ITEM = itab1-value.
          when '0009'. "LTEXT
            TAB-sched_line = itab1-value.
          when '0010'. "FTTYPE
            TAB-ACCTASSCAT = itab1-value.
          when '0011'. "FTTYPE
            TAB-ITEM_CAT = itab1-value.
          when '0012'. "FTTYPE
            TAB-MATERIAL = itab1-value.
          when '0013'. "FTTYPE
            TAB-QUANTITY = itab1-value.
          when '0014'. "FTTYPE
            TAB-UNIT  = itab1-value.
          when '0015'. "FTTYPE
           shift itab1-value left deleting leading space.
            TAB-DELIV_DATE = itab1-value.
          when '0016'. "FTTYPE
            TAB-NET_PRICE = itab1-value.
          when '0017'. "FTTYPE
            TAB-ORDERPR_UN = itab1-value.
          when '0018'. "FTTYPE
            TAB-PLANT = itab1-value.
          when '0019'. "FTTYPE
            TAB-STORE_LOC = itab1-value.
             when '0020'. "FTTYPE
            TAB-batch = itab1-value.
             when '0021'. "FTTYPE
            TAB-SD_DOC = itab1-value.
             when '0022'. "FTTYPE
            TAB-SDOC_ITEM = itab1-value.
             when '0023'. "FTTYPE
            TAB-MATERIAL1 = itab1-value.
             when '0024'. "FTTYPE
            TAB-PLANT1 = itab1-value.
             when '0025'. "FTTYPE
            TAB-QUANTITY1 = itab1-value.
             when '0026'. "FTTYPE
            TAB-UNIT1 = itab1-value.
        endcase.
      endloop.
      append tab.
      clear tab.
    sort tab by PO_ITEM sched_line.
    DELETE TAB WHERE PO_ITEM = SPACE.
    DELETE TAB WHERE sched_line = SPACE.
    loop at tab.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            INPUT  = tab-material
          IMPORTING
            OUTPUT = tab-material.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            INPUT  = tab-material1
          IMPORTING
            OUTPUT = tab-material1.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            INPUT  = tab-vendor
          IMPORTING
            OUTPUT = tab-vendor.
      concatenate tab-doc_DATE4(4) tab-doc_DATE2(2) tab-doc_DATE+0(2) into tab-doc_DATE.
      concatenate tab-DELIV_DATE4(4) tab-DELIV_DATE2(2) tab-DELIV_DATE+0(2) into tab-DELIV_DATE.
    header-comp_code    = TAB-CO_CODE.
    header-doc_type     = TAB-DOC_TYPE.
    header-DOC_DATE     = tab-doc_DATE.
    header-creat_date   = sy-datum.
    header-item_intvl   = '10'.
    header-vendor       = TAB-VENDOR.
    header-GR_MESSAGE   = 'X'.
    header-langu        = sy-langu.
    header-pmnttrms     = TAB-PMNTTRMS.
    header-purch_org    = TAB-PURCH_ORG.
    header-pur_group    = TAB-PUR_GROUP.
    header-currency     = 'INR'.
    headerx-comp_code   = c_x.
    headerx-doc_type    = c_x.
    header-DOC_DATE     = c_x.
    headerx-creat_date  = c_x.
    headerx-item_intvl  = c_x .
    headerx-vendor      = c_x.
    headerx-GR_MESSAGE  = c_x.
    headerx-langu       = c_x.
    headerx-pmnttrms    = c_x .
    headerx-purch_org   = c_x.
    headerx-pur_group   = c_x.
    headerx-currency    =  c_x.
    *p_int = p_int + 10.
    wa_item-po_item     = TAB-PO_ITEM.
    wa_item-ACCTASSCAT  = TAB-ACCTASSCAT.
    wa_item-ITEM_CAT    = TAB-ITEM_CAT.
    p_matnr = TAB-MATERIAL.
    CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'
    EXPORTING
    input = p_matnr
    IMPORTING
    output = p_matnr
    EXCEPTIONS
    length_error = 1
    OTHERS = 2.
    wa_item-material    = p_matnr.
    wa_item-PO_UNIT     = TAB-UNIT.
    wa_item-plant       = TAB-PLANT.
    wa_item-stge_loc    = TAB-STORE_LOC.
    wa_item-quantity    = TAB-QUANTITY.
    wa_item-NET_PRICE   = TAB-NET_PRICE.
    wa_item-BATCH       = TAB-BATCH.
    wa_item-conf_ctrl   = ''.
    wa_item-ACKN_REQD   = ''.
    WA_ITEM-ERS = ''.
    APPEND wa_item TO it_item.
    wa_itemx-po_item     = TAB-PO_ITEM.
    wa_itemx-ACCTASSCAT  = c_x.
    wa_itemx-ITEM_CAT    = c_x.
    wa_itemx-material    = c_x.
    wa_itemx-PO_UNIT     = c_x.
    wa_itemx-plant       = c_x .
    wa_itemx-stge_loc    = c_x .
    wa_itemx-quantity    = c_x .
    wa_itemx-item_cat    = c_x .
    wa_itemx-acctasscat  = c_x .
    wa_itemx-NET_PRICE   = c_x .
    wa_itemx-BATCH       = c_x .
    wa_itemx-conf_ctrl   = 'X'.
    wa_itemx-ACKN_REQD   = 'X'.
    WA_ITEMX-ERS         = 'X'.
    APPEND wa_itemx TO it_itemx.
    wa_POSCHEDULE-PO_ITEM       = TAB-PO_ITEM.
    wa_POSCHEDULE-SCHED_LINE    = TAB-sched_line.
    wa_POSCHEDULE-DELIVERY_DATE = TAB-DELIV_DATE.
    wa_POSCHEDULE-QUANTITY      = TAB-QUANTITY.
    APPEND wa_POSCHEDULE TO it_POSCHEDULE.
    wa_POSCHEDULEx-PO_ITEM       = TAB-PO_ITEM.
    wa_POSCHEDULEx-SCHED_LINE    = TAB-sched_line.
    wa_POSCHEDULEx-DELIVERY_DATE = c_x.
    wa_POSCHEDULEx-QUANTITY      = c_x.
    APPEND wa_POSCHEDULEx TO it_POSCHEDULEx.
    wa_IMEPOACCOUNT-PO_ITEM      = TAB-PO_ITEM.
    wa_IMEPOACCOUNT-SERIAL_NO    = TAB-sched_line.
    wa_IMEPOACCOUNT-SD_DOC       = TAB-SD_DOC.
    wa_IMEPOACCOUNT-ITM_NUMBER   = TAB-SDOC_ITEM.
    APPEND wa_IMEPOACCOUNT TO it_IMEPOACCOUNT.
    wa_IMEPOACCOUNTX-PO_ITEM     = TAB-PO_ITEM.
    wa_IMEPOACCOUNTX-SERIAL_NO   = TAB-sched_line.
    wa_IMEPOACCOUNTX-SD_DOC      = c_x .
    wa_IMEPOACCOUNTX-ITM_NUMBER  = c_x .
    APPEND wa_IMEPOACCOUNTX TO it_IMEPOACCOUNTX.
    wa_POCOMPONENT-PO_ITEM      = TAB-PO_ITEM.
    wa_POCOMPONENT-SCHED_LINE   = TAB-sched_line.
    wa_POCOMPONENT-ITEM_NO      = TAB-sched_line.
    p_matnr1                    = TAB-MATERIAL1.
    CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'
    EXPORTING
    input = p_matnr1
    IMPORTING
    output = p_matnr1
    EXCEPTIONS
    length_error = 1
    OTHERS = 2.
    wa_POCOMPONENT-MATERIAL       = p_matnr1.
    wa_POCOMPONENT-ENTRY_QUANTITY = TAB-QUANTITY1.
    wa_POCOMPONENT-PLANT          = TAB-PLANT1.
    wa_POCOMPONENT-CHANGE_ID      = 'I'.
    APPEND wa_POCOMPONENT TO it_POCOMPONENT.
    wa_POCOMPONENTX-PO_ITEM        = TAB-PO_ITEM.
    wa_POCOMPONENTX-SCHED_LINE     = TAB-sched_line.
    wa_POCOMPONENTX-ITEM_NO        = TAB-sched_line.
    wa_POCOMPONENTX-MATERIAL       = c_x.
    wa_POCOMPONENTX-ENTRY_QUANTITY = c_x.
    wa_POCOMPONENTX-PLANT          = c_x.
    wa_POCOMPONENTx-CHANGE_ID      = c_x.
    APPEND wa_POCOMPONENTX TO it_POCOMPONENTX.
      endloop.
    CALL FUNCTION 'BAPI_PO_CREATE1'
    EXPORTING
    poheader = header
    poheaderx = headerx
    IMPORTING
    exppurchaseorder = p_pono
    TABLES
    return = return
    poitem = it_item
    poitemx = it_itemx
    POSCHEDULE = it_POSCHEDULE
    POSCHEDULEx = it_POSCHEDULEx
    POACCOUNT = it_IMEPOACCOUNT
    POACCOUNTX = it_IMEPOACCOUNTX
    POCOMPONENTS = It_POCOMPONENT
    POCOMPONENTSX = It_POCOMPONENTX.

  • How do I use my own templates when saving DITA map as FM 11 book w/ components?

    I have updated the ditafm-output.ini file in the following places:
    [BookWithFM-Chapter]
    [BookWithFM-TOC]
    [BookWithFM-Index]
    [BookWithFM-ListofFigures]
    [BookWithFM-ListofTables]
    [BookWithFM-BookTitle]
    In each I used the following information for my Template file path:
    Template=$STRUCTDIR\xml\DITA_1.2\app\technicalContent\template\Book_Templates\templateChap ter.fm
    However, when I saved my DITA map as a FM 11 book with components, it still used the standard DITA templates, rather than my own templates.
    What am I doing wrong?
    Marsha

    The program can't start because MSVCR80.dll is missing from your computer
    Many thanks. Rather than the Apple document, I currently recommend using the instructions from the following user tip with that one:
    Troubleshooting issues with iTunes for Windows updates

Maybe you are looking for