TBW TOC displayed as an array

Hy all,
with template builder for word, i want to create a toc displayed like an array.
I know how to create a standard TOC like word does
sample : (1 and 2 are page numbers in my sample):
Equipment one - siemens                         1
Equipment two - toyota vehicule               2
and so on.
Cause i've severall datas in my toc line, i want to generate something like this (underline characters are only present to align columns in my post) :
========================
!equipment one__ ! siemens__!____1 !
========================
!equipment two__ ! toyota___!____2 !
!____________ __! vehicule__!_____ !
========================
is it possible to do this ?
thank's

no reply, hummm,
do you if it's possible to create an alphabetical index with page numbers.
thank's

Similar Messages

  • Display jpeg byte array with JSP !!

    I am new in JSP area so maybe I ask a easy question !!
    First, on the server side:I use a C++ program to stream sequence jpeg data out(FF D8 ~ FF D9).
    Second, on the client side:I use jsp to open a socket and read
    data to a byte array.
    Can anyone tell me how to display the jpeg array on browser one by one ?

    um... like video frames, or just a single image? I wouldn't really use JSP for that, I'd use a servlet, set the content-type to image/jpeg and just write out the bytes. Unless you are talking about displaying the bytes themselves, in which case, a JSP page would be better. If it's video frames, I'm not sure how to have the browser do that, since most no longer support server push.

  • How to display a 2D array in a Table Component?

    I want to use the Table Component to display a 2D array of data from my program so I can use the sort feature. The Table Component seems to be geared to a database table; is there a simple way to set up the table directly from the array? My 2D array has a fixed number of columns, so that is easy to set up, but the number of rows depends on prior user input.

    Hi!
    Try to read this article:
    http://blogs.sun.com/winston/entry/displaying_two_dimensional_data
    I think it will help You.
    Thanks,
    Roman.

  • How to load and display a byte array (jpeg) image file dynamically in Flex?

    My web service client (servlet) received a binary jpeg data from an Image Server. The Flex application invokes the
    servlet via HttpService and receives the binary jpeg data as byte array.  How could it be displayed dynamically
    without writing the byte array to a jpeg file?  Please help (some sample code is very much appreciated).

    JPEGEncoder is only useful for converting BitmapData to ByteArray, not the other way around.
    By the way JPEGEncoder and PNGEncoder are part of the Flex SDK now, so no need to use AS3Lib (alltough it's a good library to have around).
    To display/use a ByteArray as image, use a Loader instance with the loadBytes method.
        Loader.loadBytes(bytes:ByteArray, context:LoaderContext = null);
    Listen for the complete event on the Loader.contentLoaderInfo and get the BitmapData in the event handler.
    private function loadJpeg():void {
        var loader:Loader = new Loader();
        loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loaderCompleteHandler);
        //jpgBA is the ByteArray loaded from webservice
        loader.loadBytes(jpgBA);
    private function loaderCompleteHandler(evt:Event):void {
        var t:LoaderInfo = evt.currentTarget as LoaderInfo;
        // display the jpeg in an Image component
        img.source = t.content;
    <mx:Image id="img" scaleContent="false" />

  • Display a particular array element on the front panel

    Hello,
    I was wondering if it's possible to change which element of an array control is displayed on the front panel from within the program.
    Here's why I want to do it: I have an array of clusters, each of which contains a set of controls.  The controls in each cluster specify a bunch of different parameters for a few different instruments that are being controlled by Labview.  The user changes all the values on the front panel before the program starts, then the program steps through the array elements one by one.  I'd like to be able to change the array's display so that the user can know which set of parameters is active (and thus what is currently in force) while the program is going -- otherwise the element that is displayed is just wherever the user left it last.
    Thanks in advance for any help.

    See also: http://forums.ni.com/ni/board/message?board.id=170&view=by_date_ascending&message.id=317419#M317419
    LabVIEW Champion . Do more with less code and in less time .

  • Generated RTF TOC displaying 0 for page numbers

    Hi,
    I have an issue where I created a table of contents using Styles in Microsoft Word in my .rtf template. This is how it is displayed in the template and how I wish to display it in the generated .rtf:
    Section 2.3 : Section 2.3 Test...................48
    Section 2.3.1: Section 2.3.1 Test.............48
    Section 2.3.2: Section 2.3.2 Test.............48
    Section 2.3.3: Section 2.3.3 Test.............49
    Section 2.3.4: Section 2.3.4 Test.............50
    Section 2.3.5: Section 2.3.5 Test.............50
    When I go to generate the .rtf, the page numbers all turn to '0'. The hyperlink works correctly but the page numbers are not displaying the correct numbers. If I generate in a .pdf format, the numbers appear correctly. Unfortunately I need this to be in .rtf format. Anyone have any ideas? I cannot find anything on this issue.
    Generated in .rtf:
    Section 2.3 : Section 2.3 Test...................0
    Section 2.3.1: Section 2.3.1 Test.............0
    Section 2.3.2: Section 2.3.2 Test.............0
    Section 2.3.3: Section 2.3.3 Test.............0
    Section 2.3.4: Section 2.3.4 Test.............0
    Section 2.3.5: Section 2.3.5 Test.............0
    Thanks.

    Its identified as a word issue.
    You need to manually update the TOC in generated RTF to refresh page numbers.
    Check the note 'Table Of Contents Page Numbering In RTF Output Is Incorrect (Doc ID 473505.1)'

  • Loading display names in array

    Hi,
    I would like comparing registry display names before and after a software installation.
    So the function below is :
    1. loading display names
    2. Then I create manually a registry display names
    3. I load again the display names
    4. And I am running a comparison between previous and after installation.
    The display names, I created is Vcredist2005. So the comparison should return Vcredist2005.
    But I get only the last value of the arrays. Why??
    Function Get-DisplayName {
    Begin {
    [string[]]$regKeyApplications = 'HKLM:SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall',
    'HKLM:SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall'
    Process {
    [psobject[]]$installedApplication = @()
    ForEach ($regKey in $regKeyApplications) {
    $installedApplication += Get-ChildItem $regKey | foreach { Get-ItemProperty $_.PSPath } `
    | select DisplayName `
    | Where {$_.DisplayName -ne $null}| Sort-Object DisplayName
    $installedApplication=$installedApplication | Sort-Object DisplayName
    Write-Output $installedApplication
    End {
    $a=Get-DisplayName
    $a.Count
    #Add a false display name in the registry before continuing running.
    #I added Vcredist2005
    pause
    $b=Get-DisplayName
    $b.Count
    Compare-Object -ReferenceObject $B -DifferenceObject $A
    Thanks,

    When you're using compare-object to compare objects you should specify the property you want to compare:
    Try this:
    Compare-Object -ReferenceObject $B -DifferenceObject $A -Property DisplayName
    Inspired by Carlsberg.

  • MS HTML TOC displays, why not content?

    I'm using RH 11, and some of our programmers have decided that they want me to produce CHMs for their programs rather than WebHelp.  When I generate MS HTML Help, I get the TOC and Index in the Help just fine, but none of the content displays.  This is true of any MS HTML Help I generate, so I know it's some mistake or setting I'm missing.
    Any clues?
    Thank you!

    Hi there
    Odds are that you have either configured the output folder to be a network location, or you are copying the CHM file to a network drive before you test.
    The bottom line here is that CHM files haven't worked on network drives for a long while.
    Click here to read more about that
    Cheers... Rick

  • Displaying from an array

    hi my problem is i want to display an array of 120 characters in a format such as 6 numbers in a line and then the other six in a another line but each number has to have a spacing in between them.
    eg.
    1 2 3 4 5 6
    4 4 5 12 56 12
    5 6 7 8 . . etc
    how do i code it in java to get an output like that!!!

    try this.
    public class Numbers {
         public static void main(String[] args) {
              int[] num = new int[120];
              //fill the array with number
              for (int ctr = 0; ctr < num.length; ctr++) {
                   num[ctr] = ctr;
              //here is how to print the array in 6 number/line with spaces
              int n = 6;
              for (int ctr = 0; ctr < num.length; ctr ++) {
                   System.out.print(num[ctr] + " ");
                   if (ctr == (n - 1)) {
                        n = n + 6;
                        System.out.println("");
         

  • Display and modify array elements

    Hello,
    I am using LabVIEW to read a set of parameters from an instrument and display them into an array indicator. This first part is quite easy and works fine. What I would like to be able to do (so far unsuccessfully) is to modify some of the values directly on the array indicator and subsequently pass the new values on the array indicator back to LabVIEW. I would really appreciate if somebody could help me understand whether this is possible and how do it?
    Thanks a lot,
    Gianni
    Solved!
    Go to Solution.

    Make the array a control and write to it programmatically using a local variable. Be aware of race conditions. For example in this case you have two writers: the instrument and the user, and whoever writes last, wins.
    LabVIEW Champion . Do more with less code and in less time .

  • Store and display value in array

    Hello Experts!
    I need help with outputting a report that caculate the cost base on the quantities  from 1 to 100  ( SummaryOfCost = QtyCost * Qty ).
    I have tried to implement this with an array but always get "A subscript must be between 1 and the size of the array" error.
    What is the best way to accomplish this by your experience?  I would REALLY appreciate any help and thankful for all the support I've received in my previous post!
    Thank you so much!
    Lin
    Sample Data:
    PartNo      ItemName    QtyCost( per one Qty)
    001           A                   $1
                      B                   $2
                      C                   $3
                      D                   $4
                      G                   $5
    u2026              .                     .
    002           A                   $1.1
                     B                   $2.1
                     C                   $3.2
                     D                   $4.3
                     G                   $5.6
    u2026              .                     .
    The resuld should be :
    PartNo      ItemName    Qty      SummaryOfCost
    001           A                1                 $1
                                         2                 $2
                                         3                 $3
                                         4                 $4
                                         5                 $5
                                        100              $500
                     B                  1                  $2
                                         2                  $4
                                         3                  $6
                                        100              $200
                     C                         ..........
    002           A
    Edited by: xtan57 on Jul 30, 2010 6:14 PM
    Edited by: xtan57 on Jul 30, 2010 6:15 PM
    Edited by: xtan57 on Jul 30, 2010 6:17 PM
    Edited by: xtan57 on Jul 30, 2010 6:26 PM
    Edited by: xtan57 on Jul 30, 2010 6:26 PM
    Edited by: xtan57 on Jul 30, 2010 6:34 PM
    Edited by: xtan57 on Jul 30, 2010 6:39 PM

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

  • TOC/Search window not displayed in WebHelp Pro output

    Robohelp10, WebHelp Pro -
    I've got what I have to think is pretty fundamental question: When I generate my WebHelp Pro project, everything works perfectly until I move the contents of the output folder to a network drive for viewing. When the default topic opens, rather than displaying the TOC/Search window on the left, I'm getting a link that says "Show". Click that link, and the TOC opens right up.
    I would like to have the TOC displayed on that initial view, without requiring users to click the "Show" link.
    Again, when I view the results of the output on my local drive, the TOC is displayed. The obvious problem is, the generated help needs to reside on a network drive to be accessed by our users...
    PS: The project is on my local drive, only the contents of the output folder are being moved to the network drive. Also, everything other than the TOC display seems to be working fine.
    Any ideas would be greatly appreciated.
    -lcarey

    Larry, Rick has solved your conditional build issue. However, do check to make sure you have all the updates installed for RoboHelp 10.
    WebHelp issues in RoboHelp versions 10 and 11
    I notice you are using IE. Does the Show link occur with Chrome or Firefox as well?
    Meanwhile, I'm still suspect that you are not opening the correct "default" start page file to launch the WebHelp and that's why you're getting that "Show" link. This is "tell-tale" that you are opening the default topic file instead of the default Start Page. By chance have you somehow named your "default topic", index.html? If so, this is not correct.
    john

  • Displaying the .png image stored in an byte array

    Hi,
    I have to download an .png image from a server and i have to store it in a byte array and i have to display this byte array in another servlet. I have written the code to get the image from the remote server in a java class. The java class returns the byte array of the image and i have to display that in an servlet.
    If anybody has the code or any refrence to refer please help me..
    Thanks & Regards
    -Sandeep

    I have pasted code for servlet's doGet method which writes image data...
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws
    ServletException, IOException
    HttpSession session = request.getSession(); //taking httpsession
    response.setContentType("image/jpeg");
    ServletOutputStream out = response.getOutputStream(); //taking outputstream of response
    if (rtn.getErrorCode() == 0)
    //this will actually write image file data from where it is being called
    //byte array will contain image data, please load your image into below byte array variable
    byte[] b = new byte[100];
    out.write(b);
    out = null; //making null
    session = null; //making null
    In other servlet, write <img> tag and specify its src attribute to the "name of servlet where u have pasted above code" ..
    Regards,
    Nikhil

  • How to Display string array in jsp page using netui-data:repeater tag ??

    hi,
    I am trying to display a string array in a table using the netui-data:repeater tag.
    I have to use a page flow controller Array(1 Dimensional) to be displayed in the jsp.
    Can any one tell me how to print the array in a table of 3rows & 5 columns.
    Here is the code on which I am crrently working on.
    <netui-data:repeater dataSource="{pageFlow.strWorkObject_Array}">
    <netui-data:repeaterHeader>
    <table cellpadding="4" border="1" class="tablebody">
    </netui-data:repeaterHeader>
    <netui-data:repeaterItem>
    <tr>
    <td><netui:label value="{container.item}" >
    </netui:label></td>
    <td><netui:label value="{container.item}">
    </netui:label></td>
    <td><netui:label value="{container.item}">
    </netui:label></td>
    </tr>
    </netui-data:repeaterItem>
    <netui-data:repeaterFooter>
    </table>
    </netui-data:repeaterFooter>
    </netui-data:repeater>

    weblogic.developer.interest.workshop
    Mansoor Naseem wrote:
    I would like to know where the pageflow newsgroup is.
    These are all the groups in weblogic.developer.interest:
    weblogic.developer.interest.60beta.* (5 groups) weblogic.developer.interest.management
    weblogic.developer.interest.61beta.* (2 groups) weblogic.developer.interest.misc
    weblogic.developer.interest.clustering.* (1 group) weblogic.developer.interest.performance
    weblogic.developer.interest.commerce weblogic.developer.interest.personalization
    weblogic.developer.interest.ejb.* (3 groups) weblogic.developer.interest.portal
    weblogic.developer.interest.environment weblogic.developer.interest.rmi-iiop
    weblogic.developer.interest.jdbc weblogic.developer.interest.security
    weblogic.developer.interest.jms weblogic.developer.interest.servlet
    weblogic.developer.interest.jndi weblogic.developer.interest.tools
    weblogic.developer.interest.jsp weblogic.developer.interest.weblogicenterprise
    MN

  • How can I get the TOC to display ALWAYS in a Sans-Serif Font in Linux/Firefox.

    I've created my help project in RH9.  When it displays in Linux/Firefox, the fonts in the topics are fine, but the TOC displays in Times New Roman.  Is there a setting in RH9 that I need to use to keep this from happening?

    Hi,
    Did you change the setting in the skin? What font have you set for the TOC? Perhaps you set a font that is not available on linux so make sure that you use a web safe font.  For more information on web safe fonts, see http://www.w3schools.com/cssref/css_websafe_fonts.asp
    You can also tinker with your output files. In whthost.js, you can amend the CSS that RoboHelp uses for the TOC. you can add a rule for a sans-serif font the browser can fall back on. See http://www.wvanweelden.eu/webhelp_output_files/whthostjs for more information on the whthost.js file.
    Greet,
    Willam

Maybe you are looking for

  • How to copy backup of iTunes library onto another computer?

    My primary laptop with my music library just crashed. I have a older laptop that I plan to use while I get the other repaired. I have a complete backup of my music library on external drive. After installing iTunes on the spare laptop I copied the ba

  • Analysis of a specific workflow

    Hi all, do you know if there's an easy way, using a standard transaction, to retrieve where are the open tasks belonging to a specific workflow without accessing each workflow log? For example, all the tasks for purchase reqs or contracts or orders (

  • How come I don't have the Blur Gallery or the Path Blur?

    I have the "updated" version of Photoshop CC, but I don't have the Blur Gallery or Path Blur in my filters. Any ideas as to why they are missing?

  • Log4j and Jboss are acting weird

    This question is reagards to Log4j and JBoss and I thought this is the best place to ask this question. I am using Jboss 3.2.3. My purpose was to log messages in a seperate file "developer.log" using Log4j. These messages has to be logged in this fil

  • Plugin Lab Menu extention error message

    I downloaded the Horizontal Flyout Menu Dreamweaver extension and installed it using the extension manager into Dreamweaver MX 2004. I am using OS X 4.2.8. When I go to Inset/PluginLab/Horizontal Flyout Menu, I get an error message which states: Whil