Table set in place to achieve separate Colomns

How do you organize a table so that when it is opened in a spreadsheet, each value will be in a different column.  Currently have 8 'signals' incoming ' filter component Y ' enter 'build array' entering 'table in chain worksheet' with formatting % .3f.  So between a string of concanteneted so that I can add the date and time.  After that, sinking a string in the "write file".  Sorry if it's too much info, but I just want to know what I have to make adjustments.

Thank you.

For the "write to the spreadsheet file", there is an entry for "file path".

If you do not connect no matter what (that you did not) it will ask for a file.

Since you put this function in a loop, it continually will inspire you, which as you can see getting very annoying

Right-click on the entry for 'file path' and click on ' create > control '.

Then right-click on the control and go to "visible elements > Browse '."

Then, you can browse a path.

As for the rest of your code, I have a feeling that you get only one point at a time.

Can you please attach your actual VI file to this topic?

You need to create 8 shift registers.

Use the function 'build array' to add the value y of each waveform to its respective displacement register.

In the end, build a 2D of each table 1 d.
Then pass this 2D array to the function "write in the spreadsheet file.

Please let me know if I'm not explain well.

Tags: NI Software

Similar Questions

  • execution of stored procedure in sql developer/sql more with a table setting?

    Hello

    I create a package with a procedure which has a cursor ref as output and a type as an input parameter.  Here is my definition of the package

    PACKAGE 
    -------
    CREATE OR REPLACE PACKAGE TEST
    As
      TYPE RefCursorType IS REF CURSOR;
      type intTableType is table of varchar2(50) index by binary_integer;
      
      PROCEDURE GETDATA (
              P_RECORDS OUT RefCursorType,           
               YEAR_LIST IN intTableType
      );  
    END;
    
    
    PACKAGE BODY
    -----------------------
    
    SET DEFINE OFF
    CREATE OR REPLACE PACKAGE BODY TEST
    AS 
    PROCEDURE GETDATA
    (
      P_RECORDS OUT RefCursorType,  
      YEAR_LIST IN intTableType  
    )
    AS 
    iYearList  IDTableType;
    BEGIN 
      --GET ARRAY COUNT
      IYEARLIST := IDTABLETYPE();
      IYEARLIST.EXTEND(YEAR_LIST.COUNT);
      
      --LOOP THROUGH LISTS AND POPULATE ARRAY
      FOR I IN YEAR_LIST.FIRST .. YEAR_LIST.LAST
      LOOP
      IYEARLIST(I) := IDTYPE(TO_CHAR(YEAR_LIST(I)));
      END LOOP;
      
       OPEN P_RECORDS FOR 
       SELECT CITHTML AS FORMATTED
        FROM dbTest.FORMATTED_HTML
      WHERE YEAR IN (SELECT * FROM TABLE(IYEARLIST))
      ;
      END GETDATA ;
    END TEST ;
    /
    
    

    I want to perform this procedure from the sql or sql developer more to see if it works properly.   The year field dbTest.FORMATTED_HTML is defined as varchar2 (20 bytes).  He has many years as well as text.

    I've used this in the past with simple stored procedures, but not those with a table setting

    var r refcursor;

    exec GETOLDDATA(:r,40);

    print r;

    How can I modify this to allow him to run my stored procedure?

    Thank you

    Just declare SQL, not type of PL/SQL:

    CREATE OR REPLACE

    TYPE Str50TblType

    AS THE TABLE OF THE VARCHAR2 (50)

    /

    CREATE OR REPLACE

    THE TEST PACKAGE

    IS

    GETDATA PROCEDURE)

    P_RECORDS ON SYS_REFCURSOR,

    YEAR_LIST IN Str50TblType

    );

    END;

    /

    CREATE OR REPLACE

    TEST OF PACKAGE BODY

    IS

    GETDATA PROCEDURE)

    P_RECORDS ON SYS_REFCURSOR,

    YEAR_LIST IN Str50TblType

    )

    IS

    BEGIN

    OPEN P_RECORDS

    FOR

    SELECT CITHTML AS FORMATTED

    OF dbTest.FORMATTED_HTML

    WHERE YEAR IN)

    SELECT *.

    TABLE (YEAR_LIST)

    );

    GETDATA END;

    END TEST;

    /

    SY.

  • Need help to place images on separate layers

    I'm a novice at Javascript, but I tried to learn. I have a project where I need to place several images from a folder on separate layers (same page) in a model. I tried to edit the "ImageCatalogue" script in InDesign to disastrous results. On another thread someone has been kind enough to give me a short script 'Objects to layers', written by Kasyan Servetsky. This has been very useful, but not exactly for me so now I'm from scratch. I played with the following code tries to make it work. This is not, and I'm frustrated. I keep changing this line but he comes back as "not defined":

    myImage.place (newLayer);

    Can someone tell me please in the right direction? My code is too simple? The end comments are that my list of wishes of Add-ons should never get these layers work.

    Thanks for your help!

    script to place images on separate layers

    Main();

    function Main() {}

    get the path to the folder, select the folder in which

    myFolder var is Folder.selectDialog ("selection of a folder containing images');.

    use the open document

    doc = app.activeDocument;

    If the folder is empty, tell the user to select another folder

    If (myfolder. Length == 0) {}

    selectDiaglog ("folder empty, select new folder");

    }

    else {}

    Select each file in MyFolder and place it on the new layer in the active document

    var myImage = myFolder.item;

    newLayer = doc.layers.add (+ 1);

    myImage.place (newLayer);

    }

    Alert ("Done")

    }

    rotate the image 90 CCW

    Place the image in x - 6.41, y9.9955 on page

    Rename the layer as file name

    Hello

    Main();
    
    function Main(){
         // get path to folder, ask to select which folder
         var myFolder = Folder.selectDialog("Select folder containing images");
         // use open document
         doc = app.activeDocument;
         // if folder is empty, exit
         if(!myFolder){
              alert("no Folder selected, I am quitting"); exit();
         }
    
         // place each file in myFolder on new layer in active document
         // files are filtered by their extension
         var
              myImages = myFolder.getFiles(/\.jpg$|\.tiff$|\.pict$|\.bmp$|\.eps$|\.pdf$/i),
              len = myImages.length, currImg,
              mAngle = 270,
              mX = -6.41,
              mY = 9.9955;
    
              while (len-->0) {
                   currImg = doc.pages[0].place(
                        myImages[len],     // current file
                        [0,0],     // initial place point
                        doc.layers.add({name: myImages[len].displayName}),          // rename layer as filename
                        false,
                        false,
                        {absoluteRotationAngle: mAngle}          // rotate image 90 CCW
                        )[0].parent;
                   currImg.fit(FitOptions.FRAME_TO_CONTENT);     //  fix frame to content
                   currImg.move([mX,mY]);          // move image at x-6.41, y9.9955 on page
                   }
    
              alert("Done")
         }
    

    Each image in the same point placed?

    Good help is served here:

    http://www.jongware.com/idjshelp.html

    Each object has properties and methods.

    Above: the folder.getFiles (), page.place (), rectangle.fit () and rectangle.move () methods.

    Jarek

  • The part of report of a report region table setting to fill the region

    I need to make them with any part of the report, the section of report fills the width of the region, the column spacing all also in the entire region.

    The screenshot below shows the report occupies only a small part of the region. I need the region to this width to maintain the page layout consistency between pages.

    I can change the CSS so that it affects

    . Report-standard-alternatingrowcolors {}

    Width: 750px;

    }

    And then the same set the columns to specific width, but this application is displayed on a number of different resolutions, thereby affecting the specific widths is not all good.

    If I value percentage widths it does not.

    Any ideas?

    Screen Shot 2014-10-24 at 10.04.52.png

    The following screenshot shows what I want to achieve, even if it made specific widths specifying, in px, which means that it is not scalable for different resolutions.

    Screen Shot 2014-10-24 at 10.08.42.png

    The external table that contains the table of standard report also must be set to 100% width. Change the CSS rule:

    table[id^="report_"],
    .report-standard {
      width: 100%;
    }
    
  • Table names are stored in a separate table; How can I use the domain as table name?

    Dear Experts,

    My version of oracle is,

    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production

    PL/SQL Release 9.2.0.1.0 - Production

    CORE 9.2.0.1.0-Production

    AMT for 32-bit Windows: Version 9.2.0.1.0 - Production

    NLSRTL Version 9.2.0.1.0 - Production

    I stored the table names in a separate table as

    Table name: all_table

    Fields are: table_id, table_name, desc

    record of the sample: 1, EMP, EMPLOYMENT DETAILS

    Now I want to select all the contents of a perticular table, his name is all_table.

    (ie)

    Select * from (select table_name from all_table where table_id = 1);

    But it is not listing the details of the EMP table.  Its poster simply the name of the field "EMP".

    Please help me in this regard.

    Hello

    Whenever you make dynamic SQL statements, you must place the dynamic whole statement in a single string variable.  When debugging, display this string before running it.  If you get a runtime error that will show you the statement he makes, which often made the obvious cause.  For example:

    DECLARE

    CURSOR c IS

    SELECT table_name

    From user_tables;

    CNT NUMBER;

    sql_txt VARCHAR2 (1000);

    BEGIN

    FOR ut IN t

    LOOP

    sql_txt: = 'SELECT COUNT (*).

    || « DE » ' || t.table_name | '"';

    dbms_output.put_line (sql_txt |) "= sql_txt"); -For debugging

    EXECUTE IMMEDIATE sql_txt INTO cnt;

    dbms_output.put_line (' Table: ')

    || t.table_name

    || ' ('

    || CNT

    || "lines)"

    );

    END LOOP;

    END;

    /

    You can comment the put_line extra call when you are convinced that sylvie statement works.

    If you have non-standard table names (for example, names that contain spaces) you must place the names of the tables in double - quotes, as I did above.

  • Table set

    Hi, I have a table and the table, I have another table, and I want inside table fixed to the very high, but rather its aligned at the Center and depending how much the info, I have table inside it changes the location of the table. I want inside table fixed to a specific place and stay put at this place without moving upwards or downwards according to the amount of information being given in the table.
    Can someone help me? If someone could give me any help I will greatly appreciate it.
    Thank you.

    Click anywhere in the internal table in Design view. Watch the quick tag
    Bar selection at the bottom of the document window. Click the right-most

    Label to select the internal table. Then put the arrow to the left on the
    keyboard once. Your insertion point should now be in the cell that contains
    This table. Look at the property inspector and set its Valign to TOP. That
    will give you this code-


    CellSpacing = "15" cellpadding = "0" >

    --
    Murray - ICQ 71997575
    Adobe Community Expert
    (If you * MUST * write me, don't don't LAUGH when you do!)
    ==================
    http://www.dreamweavermx-templates.com - template Triage!
    http://www.projectseven.com/go - DW FAQs, tutorials & resources
    http://www.dwfaq.com - DW FAQs, tutorials & resources
    http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
    ==================

    "WOLFcfm" wrote in message
    News:e3bhd4$6HS$1@forums. Macromedia.com...
    > hmmm... it's funny, I can't seem to get it to align to the top, but I'm sure that
    > you
    > law and that the how you do but its does not work for me, maybe it is
    > something is wrong with my code
    >
    >


    > cellspacing = "15" cellpadding = "0" >
    >
    >
    >

    > cellspacing = "0".
    > bgcolor = "#FFFFFF" >
    >
    >
    >
    >
    >
    >
    >

    >
    >
    >
    >
    >

    >
    Welcome

    >

    >

    >
    >
    >
    >
    >
    >
    >

  • HP C4780 wireless set in place with Snow Leopard

    So I bought the HP C4780 printer since it's wireless and said it was easy to use.  Well up to now which seems wrong.

    Here is my set up: MacBook Pro under Snow Leopard (10.6.2), Airport Express model A1264 (establishing an access point wireless in my office of the ethernet connection) and the HP C4780.  I know that the Airport Express Terminal works since I can access the internet and the rest of the office network.

    Can I use the C4780 fine if I connect it directly to the MBP by USB, but I can't understand for the life of me how to connect wireless (and I don't want to connect the USB cable of the Airport Express Terminal... they are too far away without buying more cables and bat so to the point of wireless!).  All the instructions provided with the printer speak to insert the disc in place and following the installation of HP, but there was a big sticker on the box saying NOT to use the drive as all drivers are part of the leopard to snow... so basically, the instructions are useless.  Then when I look online I see no instructions specifically for Snow Leopard.  It's very frustrating!  I spent all day trying to make heads or tails of the instructions and could never make it work.

    Does anyone know of some easy to follow set up instructions?  Thank you!

    Try to use the method of the WPS (Wi - Fi Protected Setup) button to connect your C4780 to your Airport Express Terminal.  This linkshows how.

    To activate button WPS on your C4780 method, press:

    • Scan
    • Wireless menu
    • WPS
    • Push button
    Message edited by Wi-Fi-Guy 24/11/2009 15:51

  • EA6200 password set in place the problem

    Hello!

    I tried to put in place my EA6200 or the first time. I did everything as it is written in the guide. I went to http://linksyssmartwifi.com/, accepted the terms and choose the manual set up. After that came an error page and I have to close the window. Since then whenever I open the page, it is requested a router password (that I had not put in place). 'admin' it doesn't work. I tried the reset but it did not help. I always get the following massage:

    Help, please!

    LACI

    Unplug your unit from ISP to the internet port of the router.

    Reset the default router. He now mentions the reset for only 10 but button to her for 30.

    Then follow the setup procedures or else that it is plugged into the internet port of the router.

  • Problem with email blackBerry Smartphones set in place

    I have a contract with Vodafone for my blackberry 8900 curve and had to refer to compensation after an incident at work which resulting in the failure of the screen, but the emails that I had were still enrolled and despite a distorted screen the phone still worked properly. I had sent it and she came today, when I try to save my mails he only asks me if I want to set up a work through BES email which is useless for me, can someone give me a helping hand because this is ridiculous, I've set up the blackberry Desktop Manager and tried to upoaded it by this , but there is no difference, the software itself had been upgraded, while he was sent away and I think this could be the problem, but I need to find a way to resolve this issue as soon as possible

    Try to go through the link BIS... I join the link and get your carrier and then go that route.  Return your service books... then

    Go to OPTIONS > ADVANCED OPTIONS > APPLICATIONS > TABLE of ROUTING HOST > then press Menu (BlackBerry) > register NOW.

    Where to connect to BIS

  • Creation of a value of Type Table set of 'EVERYTHING' as one of the value

    Gurus,

    My requirement is to create value together [table type] which would show the values [LOV] parameter of Conc Progr.
    So far, we have three these values to choose from, they are 'frozen', 'pending' and 'Test '. I managed.
    My question is,
    If the user wants to choose 'ALL' three values, how will welcome him in this game of table type values?
    Give the fourth option as ALL who would finally choose 'ALL' three values 'Frozen', 'Pending' and 'Test '.

    Thanks in advance.
    LDS-

    You can't have the UNION in the set of values.
    Try to create a view, which is to have the UNION with ALL.
    See the following links.
    Game table of values.
    ORA-00907 is missing a closing parenthesis in the value

    By
    VAMSi

  • Shake reduction properties/setting in place an action

    How can I determine the properties of a particular session of Shake Reduction? I have a tiff saved with all the layers and a layer that is dedicated to the reduction of vibrations from a previous session. I assumed that the properties for each layer or the setting is saved in the tiff format, however, this may only apply to adjustment layers. It's been a while since my last session PS CC so for the life of me, I don't remember what I used with success of the session, but I want to use now. It took me a long time to determine this particular set of basic properties and I fear having to re-examine their. I also checked the history of this tiff, but the history feature may work differently I would have had it worked if I were in charge of PS so 'no dice' there.

    I tried to put in place an action of reduction of the vibrations that my 'start' settings would be saved instead of the tool determines, but nothing is, so please consider this a follow-up question. How to set up an action of reduction of shake using my settings instead of the tool.

    If you make any setting when you save the action all registered EEG is with Auto operations and removal of artifact. If you make adjustments and then the width, height, Total traces, active and with Artifact removal is recorded. There may be other hidden stuff saved that is not displayed. For when I look at what Scriptlistener records for step Action handles, I see a lot more recorded information. It is a long string, even if I just move the position of the automatic trace by default. The amount of blur can be in there.

    // =======================================================

    var idoneCABeighttwofivefiveBsixeighttwofourEADeightoneeightfourACsixfivezerothreezeroonethre efourDfive = stringIDToTypeID ("1CAB8255-B682-4EAD-8184-AC65030134D5");

    var desc35 = new ActionDescriptor();

    var idactV = charIDToTypeID ("the actV");

    desc35.putInteger (idactV, 5);

    var idautK = charIDToTypeID ("autK");

    desc35.putBoolean (idautK, false);

    var idimgH = charIDToTypeID ("imgH");

    desc35.putInteger (idimgH, 861);

    var idimgW = charIDToTypeID ("imgW");

    desc35.putInteger (idimgW, 666);

    var idknlC = charIDToTypeID ("knlC");

    desc35.putInteger (idknlC, 1);

    var idappK = charIDToTypeID ("appK");

    desc35.putInteger (idappK, 1);

    var idsetS = charIDToTypeID ('sets');

    desc35.putData (idsetS, string.fromCharCode(0)) (1, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 255, 255, 1, 0, 0, 0, 1, 1, 1, 0));

    var idfRet is charIDToTypeID ('fret');.

    desc35.putBoolean (idfRet, true);

    var idknlM = charIDToTypeID ("knlM");

    desc35.putData (idknlM, string.fromCharCode(0)) (a very long string here which will not display);

    executeAction (idoneCABeighttwofivefiveBsixeighttwofourEADeightoneeightfourACsixfivezerothreezeroonethre, efourDfive, desc35, DialogModes.NO);

  • Update of Table, summarizing the content of the separate column.

    Hi all

    Small update problem: -.

    CREATE THE TABLE:
     
    CREATE TABLE TestTab10
    (
    GROUPID VARCHAR2(10),
    ITEMS_1 NUMBER(2), 
    ITEMS_2 NUMBER(2),
    ITEMS_3 NUMBER(2),
    TOT_ITEMS VARCHAR(50),
    SEQNO NUMBER(10)
    );
    DATA: -.
     
    INSERT INTO TestTab10("GROUPID","ITEMS_1","ITEMS_2","ITEMS_3","TOT_ITEMS","SEQNO") VALUES ('10001','12','13','','','123456');
    INSERT INTO TestTab10("GROUPID","ITEMS_1","ITEMS_2","ITEMS_3","TOT_ITEMS","SEQNO") VALUES ('10001','12','','16','','123457');
    INSERT INTO TestTab10("GROUPID","ITEMS_1","ITEMS_2","ITEMS_3","TOT_ITEMS","SEQNO") VALUES ('10002','','','','','123458');
    INSERT INTO TestTab10("GROUPID","ITEMS_1","ITEMS_2","ITEMS_3","TOT_ITEMS","SEQNO") VALUES ('10003','','13','','','123459');
    INSERT INTO TestTab10("GROUPID","ITEMS_1","ITEMS_2","ITEMS_3","TOT_ITEMS","SEQNO") VALUES ('10003','','13','','','123460');
    INSERT INTO TestTab10("GROUPID","ITEMS_1","ITEMS_2","ITEMS_3","TOT_ITEMS","SEQNO") VALUES ('10003','','13','','','123461');
    INSERT INTO TestTab10("GROUPID","ITEMS_1","ITEMS_2","ITEMS_3","TOT_ITEMS","SEQNO") VALUES ('10004','11','13','','','123462');
    INSERT INTO TestTab10("GROUPID","ITEMS_1","ITEMS_2","ITEMS_3","TOT_ITEMS","SEQNO") VALUES ('10004','','12','','','123463');
    INSERT INTO TestTab10("GROUPID","ITEMS_1","ITEMS_2","ITEMS_3","TOT_ITEMS","SEQNO") VALUES ('10004','','13','14','','123464');
    Select * from TestTab10;
    GROUPID       ITEMS_1    ITEMS_2    ITEMS_3 TOT_ITEMS                                               SEQNO
    ---------- ---------- ---------- ---------- -------------------------------------------------- ----------
    10001              12         13                                                                   123456
    10001              12                    16                                                        123457
    10002                                                                                              123458
    10003                         13                                                                   123459
    10003                         13                                                                   123460
    10003                         13                                                                   123461
    10004              11         13                                                                   123462
    10004                         12                                                                   123463
    10004                         13         14                                                        123464
    Desired results: -.
    GROUPID       ITEMS_1    ITEMS_2    ITEMS_3 TOT_ITEMS                                               SEQNO
    ---------- ---------- ---------- ---------- -------------------------------------------------- ----------
    10001              12         13            121316                                                 123456
    10001              12                    16 121316                                                 123457
    10002                                                                                              123458
    10003                         13            13                                                     123459
    10003                         13            13                                                     123460
    10003                         13            13                                                     123461
    10004              11         13            11131214                                               123462
    10004                         12            11131214                                               123463
    10004                         13         14 11131214                                               123464
    I need to update the Tot_items column with the number of distinct elements which is held within each groupid.

    The ideas people?

    Thanks in advance.

    Lack OP wants ordered items:

    merge
      into  testtab10 a
      using (
             with t as (
                        select  rowid rid,
                                listagg(items_1 || ',' || items_2 || ',' || items_3,',')
                                  within group (order by seqno)
                                  over(partition by groupid) items
                            from  testtab10
                       )
             select  rid,
                     xmlquery(
                              'string-join(for $n in distinct-values(ora:tokenize($str,",")) order by xs:integer($n) return $n,",")'
                              passing ',' || items as "str"
                              returning content
                             ) tot_items
               from  t
            ) b
      on (a.rowid = b.rid)
      when matched
        then
          update
            set a.tot_items = b.tot_items
    /
    
    9 rows merged.
    
    SQL>  select  *
      2     from  testtab10
      3  /
    
    GROUPID       ITEMS_1    ITEMS_2    ITEMS_3 TOT_ITEMS                 SEQNO
    ---------- ---------- ---------- ---------- -------------------- ----------
    10001              12         13            12,13,16                 123456
    10001              12                    16 12,13,16                 123457
    10002                                                                123458
    10003                         13            13                       123459
    10003                         13            13                       123460
    10003                         13            13                       123461
    10004              11         13            11,12,13,14              123462
    10004                         12            11,12,13,14              123463
    10004                         13         14 11,12,13,14              123464
    
    9 rows selected.
    
    SQL>
    

    SY.

  • get the value of the attribute of Advanced Table & set

    Hello

    I am a beginner in the OPS, that's why your help is very appreciated. _


    Can one advice me please how I can get and set values for the attributes in Advanced Tabel.

    I have an advanced array (dtls_advance_tbl) that contains 5 columns and I want to get the value of the attribute (class_1) and change the value of the attribute (class_1_image) on this basis.

    Please advice the code and what class / method I have to write it (I mean it is in the controller / VOImpl)?

    Thanks in advance.

    Kind regards... Ashraf

    No ok ok, so no need to go to rowreference or PPR.

    change the code below and the writeh in the PR of the extended controller method

    OAViewObject vo = (OAViewObject) getEmployeeSummaryVO1 ();
    Line EmployeeSummaryVORowImpl = null;

    This tells us the number of lines that were recovered in the
    Rowing together and away the extra lines as some of the
    other methods 'get County '.

    int fetchedRowCount = vo.getFetchedRowCount ();

    We use a separate iterator - even if we could scroll the
    the lines without it - because we do not want to influence the currency of the line.

    RowSetIterator deleteIter = vo.createRowSetIterator("deleteIter");

    If (fetchedRowCount > 0)
    {
    deleteIter.setRangeStart (0);
    deleteIter.setRangeSize (fetchedRowCount);

    for (int i = 0; i)< fetchedrowcount;="">
    {
    line = (EmployeeSummaryVORowImpl) deleteIter.getRowAtRangeIndex (i);

    For performance reasons, we generate ViewRowImpls for all
    Objects in view. When we need to get an attribute value,
    We use the accessors appointed instead of a generic string search.

    Number primaryKey = (Number) row.getAttribute ("EmployeeId"); / / Get two rows here at a time when you want to compare

    Number primaryKey = row.getEmployeeId ();

    If (make the comaprison here)
    {
    write your logic here
    break; only one selected line in this case
    }
    }
    }

    deleteIter.closeRowSetIterator ();

    Thank you
    Pratap

  • Help with the new Style of Table set in shape?

    I'm having all sorts of problems using the new table style trainer.  I'm not a RoboHelpHTML 8 experts (I better with version 5).  I am trying to create a table with 3 columns, of which the first is aligned to the left, the last 2 are centered.  The header (rank 1) is bold and centered.  Also I want all lines of the same thickness.  I created the table using the standard SimpleGridBlack... Image2.jpg It is actually a line at the top... don't know what happened.  Then I ran WebHelp and the situation was identical to one here.  Then I duplicated the SimpleGridBlack and apply the new style to the table.  Then I started to make changes to the new style.  I chose the first line and made all columns centered and in bold. Image4a.jpg Because I want the columns 2 and 3 to be centered, I then selected columns even for change. Image5a.jpg He took care of column 2.  Then, I chose the last column of change. Image6a.jpg He took care of column 3.  However, the results were not what I expected. Image10.jpg The upload does not quite show the image correctly.  The line under the "gg" is really there and the lines separating columns 1-2 and 2-3 in row 1 are really there.

    Image15.jpgHowever, the first line of column 3 is not centered and lines A-B-C, D-E-F, A-D-G and H-E-B are thicker than the other lines.

    I hope that someone can help you.  It took 2 days and get a website made available for my use to get to the point that I am now.  It is a document that I am out of this week and I have a lot of tables to change.  Thanks for any help.

    Virginia

    8 HR tables are boring to say the least.

    First your alignment problems, you should take a look in the HTML itself to ensure that it is properly applied. The amoun of timers told me to center text and align and the HTML behind comes usually do. To verify here quickly.

    Regarding the double lines that you seem to be around the table, this may help, but I'm not sure that using your styles around them now.

    If you select the table as a whole, right-click right table properties > tab Table > table borders > turn off all borders of the table. Then go to this tab Table > cell borders > set the thickness to be used here, this applies to all round and will give you the lines you want.

    Good luck.

  • I wonder why... (New sequence set in place)

    In view of the excellent ability of CS5 in order to 'Create a corresponding sequence' to an element when it is moved on the new icon... I wonder why we're still forced to go through the process of setting up a sequence when you start a new project?

    (I'm aware that you can also create and use a custom put in place at this stage).

    Would be nice if that could be possibly short-circuited directly in the application.

    Thank you.

    will I have a report of weirdness to cite it?

Maybe you are looking for

  • to update flash player

    Despite making the obnoxious message that the flash drive is "obsolete" and download and install Flash, I get always the same message and blocks video from the internet. Thank you RBR

  • Is it possible to overclock Tecra 8100

    Hello everyone Is it possible to overclock toshiba tecra 8100 with 600 MHZ processor, please? If so haw can do?Thank you Miro

  • Uninstalled realtek ok Equium L40 wireless driver

    My son for some unknown reason a uninstalled/wiped out the program wireless Realtek on Equium L40 - 17 m.Now, it can not connect to the internet via Wi - Fi, so I tried with the Ethernet cable but still cannot establish a connection. I have downloade

  • DVD Bluray.

    Recently, I replaced my Pavillion G7 1261nr with a 2269wm of Pavillion G7. I want to know if I can take the Bluray of the 1261nr one could in the 2269wm?  I coulnot find an affordable replacement with bluray and I use my laptop for tat frequently. Th

  • old documents printed on new printing - photosmart b209a?

    Neww installed ink cartridges photosmart b209a printer and an old printed document appears on each new document to print.  Performed a realignment and a product cleaning but it appears stll on the new print jobs.