How to create tables without visible lines?

How an a table with no visible vertical and horizontal lines dividing the rows and columns?

Owen,

Luca

Just turn off the borders of the cells.

Tags: InDesign

Similar Questions

  • How to create table of the method

    Hello-

    Could someone please tell me how can I create an af:table with more than one column of an AppsModule method.

    When I have a 1 d table return for example:

    public String [] createTable()}
    String [] str = new String [1];
    return str;
    }

    I can get as a table and a column is created. But how do I get mutiple columns in a table. I want to write a method that when inserted on jsp page create table with multiple columns.

    I use ADF 11 g.

    Please suggest.

    Greetings-
    Rohit

    Hello

    to do this, you use a matrix, or a list of arrays of objects. The object represents the contents of the line, e.g., person. The Person class then have setter/getter for each property you want to display in a column

    Frank

  • How to create table selectable line or not based on the value of the line

    Hello.

    JDeveloper 11.1.1.2

    Is it possible to make a selectable table row or not based on a value in the line.

    That is to say. lets say that the row contains a Boolean LOCKED = TRUE.
    This line should not be selectable.

    A line whose value LOCKED = FALSE should be selectable.

    / Erik

    Erik,

    No particular reason to disable a selection of lines for a particular line? If I'm an end user, I would be clicking on the same line of thought again and again my mouse does not ;) (call me dumb :)). How do you differentiate this line (using inlineStyle / styleClass) based on the value of line? In addition, you can disable the other buttons when a row with a particular value is selected (so that the user knows that the selected line is not treatable).

    Arun-

  • How to create .iso without conversion of .dmg files

    Hello it is well-established if a person possesses a .dmg file and trying to convert multiline to the command line, commands and you're done. But is there a similar way to how a person can create a .dmg files/files file using disk utility to create a .iso file without having to create .dmg and then convert into .iso? Y at - it a 3rd party app that can do this, or perhaps do it directly from the command line?

    Thank you

    MelRay

    Too bad, I was getting a lot of hits from google to create the .iso to a cd/dvd, etc.. But there is a way of the command line to do this as well, so I'll post it for those maybe with the same question. This is done from a terminal of course window. Enter the following text:

    hdiutil makehybrid -o ~/Desktop/image.iso ~/path/to/folder/to/be/converted -iso -joliet

  • How to create network without internet access

    I have three devices: air mac, mini ipad and iphone OS. but I can't access the internet.

    How can I create a network without internet access?

    Maybe I just need another router, but sometimes, I just take my mac and iphone. It is impossible to get the router with me everywhere.

  • How to create children without master context.

    Hello

    I have a special requirement where I need to allow the user to create a book of the child without master context.

    I have two of your MasterVO and ChildVO and have seen the connection between these two. and cardinality is 0.1 to *. Here, my master is read only VO. and it's generally group by child attributes except Date column. I like that, because my table is normalized table and column VersionNumber which is of type Date correspond to the versions of each master. So I created my Application module as below.

    -MasterVO

    -ChildVO.

    In the UI, when I create a record of the child using ChildVO, but because of the connection of the display, it creates a trace under the Master.  But is it possible where we can use the same instance of ChildVO, which is under masterVO to create a new record, but the newly created folder should not be created as part of the master.

    I want this requirement to reuse the jsff page, because I have create and modify pages, the two looks like but I create use ChildVO for all input values, but in the editing page attributes little (which is common attributes except version of each master to another date) is not editable, those will be less read only Master VO (I used group by VO to achieve this in here) , and in the editing screen, we allow user create the new version of the master where it copies all values in the master VO except date. so in the backend it stored in separate folder with different dates.

    No help from this kind of implementation.

    Thanks a lot for your help in advance.

    I use JDev version 11.1.1.7.0.

    Kind regards

    Dietsch.

    Please mark correct for later use, for others...

  • JOIN the question... Join two tables without omitting lines

    I came across a problem that should be an easy fix (I hope), but I'm having a hard time to come up with a solution.

    Basically I have two tables, one with the actual amounts with the budget. I have to write a sql statement select that joins these tables together and includes all of their lines. I was able to join the tables by using JOIN, LEFT JOIN and RIGHT JOIN, but it always fails the lines I need.

    Below, I have examples of my tables (AMOUNT_TABLE and BUDGET_TABLE). For simplicity, I built the examples to show the same values in the first four columns, with the 5th and 6th columns (SUB_ACCOUNT, AMOUNT, BUDGET) as the only values that are different. My actual tables are not quite that simple, but I don't think it was relavent to this issue.

    AMOUNT_TABLE

    FISCAL_YEAR PERIOD ACCT_UNIT ACCOUNT SUB_ACCOUNT AMOUNT

    2013

    111111555555000010020131111115555551000100201311111155555520001002013111111555555300010020131111115555554000100

    BUDGET_TABLE

    FISCAL_YEAR PERIOD ACCT_UNIT ACCOUNT SUB_ACCOUNT BUDGET

    2013

    1111115555553000200201311111155555540002002013111111555555500020020131111115555556000200

    Here's what I hope. Note that SUB_ACCOUNTs 0000, 1000, and 2000 show without budget amounts since there is not a corresponding line in the BUDGET_TABLE. And same for SUB_ACCOUNTs 5000 and 6000, they show budgets with no amount because there is not a corresponding line in the AMOUNT_TABLE.

    (exit)

    FISCAL_YEAR PERIOD ACCT_UNIT ACCOUNT SUB_ACCOUNT AMOUNT BUDGET
    201311111155555500001000
    201311111155555510001000
    201311111155555520001000
    20131111115555553000100200
    20131111115555554000100200
    201311111155555550000200
    201311111155555560000200

    If all goes well, my question is clear. Any help on this would be greatly appreciated. Thanks in advance.

    Use the join ANSI - FULL OUTER JOIN syntax:

    with amount_table like)

    Select fiscal_year 2013, 1 period, 11111 acct_unit, 555555, 0000 sub_account, amount 100 of all the double union

    Select 2013,1,11111,555555,1000,100 from all the double union

    Select 2013,1,11111,555555,2000,100 from all the double union

    Select 2013,1,11111,555555,3000,100 from all the double union

    Select double 2013,1,11111,555555,4000,100

    ),

    budget_table like)

    Select 1 time, 11111 acct_unit, account 555555, sub_account 3000, 2013 fiscal_year, budget of 200 Union double all the

    Select 2013,1,11111,555555,4000,200 from all the double union

    Select 2013,1,11111,555555,5000,200 from all the double union

    Select double 2013,1,11111,555555,6000,200

    )

    Select nvl (a.fiscal_year, b.fiscal_year) fiscal_year,

    period of NVL (a.period, b.period),

    NVL (a.acct_unit, b.acct_unit) acct_unit.

    account of NVL (a.Account, b.Account),

    NVL (a.sub_account, b.sub_account) sub_account.

    Amount NVL(a.amount,0),

    NVL(b.budget,0) budget

    of amount_table one

    full join

    budget_table b

    on)

    a.Fiscal_Year = b.fiscal_year

    and

    a.period = b.period

    and

    a.acct_unit = b.acct_unit

    and

    a.Account = b.account

    and

    a.sub_account = b.sub_account

    )

    /

    FISCAL_YEAR PERIOD ACCT_UNIT ACCOUNT SUB_ACCOUNT AMOUNT BUDGET
    ----------- ---------- ---------- ---------- ----------- ---------- ----------
    2013 1 11111 555555 0 100 0
    2013 1 11111 555555 1000 100 0
    2013 1 11111 555555 2000 100 0
    2013 1 11111 555555 3000 100 200
    2013 1 11111 555555 4000 100 200
    2013 1 11111 555555 6000 0 200
    2013 1 11111 555555 5000 0 200

    7 selected lines.

    SQL >

    SY.

  • How to create the variable diagonal line pattern in CS6?

    Hi guys

    I'm at the edge of madness with the creation of my pattern of diagonal lines. I've tried everything I can think of, but the boss is an absolute mess! I want to create a pattern of diagonal lines, but I want the lines to not be uniform. Basically, I had a group of 3 lines and then a separate line on its own, then repeating this like the image below. I used the function of distributing the distances between the lines is the same everywhere. I then turned the all exactly 45 degrees and aligned with the lines to fit in the bounding box in the mode 'as the motive"as shown. Yet, the resulting model is just a mess of the ugliness of overlap. Can all that I want is the model literally watch as it does in the picture on the left, someone you please tell me how to sucessfully this in CS6? Would be eternally grateful!

    Desired design: pattern problem.png result:ugly pattern.png

    Never create a line pattern obliquely. It is not necessary.

    Create the model at 90 ° angle and then use object > transform > Rotate and check the option "Transform Patterns" and enter the angle you are after...

    Try to get the slanted lines to match a pattern can take a lot of effort. Where as with this method you can create the pattern and turn it in a few minutes. Let the Illustrator to work for you rather than against you. And, you can rotate to any angle, so the model will work in many ways.

  • How to create Table View with even a column name but another Table?

    Hi all

    I have the problem to create a tableview with the same column name, but in the other table.

    Table I: -.

    Table - PAC051MPROFORMA

    Column - MNR, visitid

    Table - PAC051TPROFORMA
    Column - MNR, visitid

    Table - PAC052MTRANSBILL
    Column - MNR, visitid

    Then, I want to create a table for this table. It comes to my SQL

    Pacviewproforma CREATE VIEW (MNR, visitid, MNR, visitid, MNR, visitid)

    Like some PAC051MPROFORMA.mrn, PAC051MPROFORMA.visitid, PAC051TPROFORMA.mrn, PAC051TPROFORMA.visitid, PAC052MTRANSBILL.mrn, PAC052MTRANSBILL.visitid

    where

    * (a.PAC051MPROFORMA.mrn = PAC051TPROFORMA.mrn) *.
    and
    * (a.PAC051TPROFORMA.mrn = PAC052TRANSBILL.mrn) *.

    SQL return this error ORA-00957 =: duplicate column name

    Can I change this SQL for

    Pacviewproforma CREATE VIEW (MNR, visitid)

    Like some PAC051MPROFORMA.mrn, PAC051MPROFORMA.visitid, PAC051TPROFORMA.mrn, PAC051TPROFORMA.visitid, PAC052MTRANSBILL.mrn, PAC052MTRANSBILL.visitid

    where

    * (a.PAC051MPROFORMA.mrn = PAC051TPROFORMA.mrn) *.
    and
    * (a.PAC051TPROFORMA.mrn = PAC052TRANSBILL.mrn) *.
    This time this error return = ORA-01730: number of column names specified invalid

    What should I do?

    Thank you...

    Hello

    SQL> CREATE VIEW pacviewproforma (mrn,visitid,mrn,visitid,mrn,visitid)
      2  As Select
      3  PAC051MPROFORMA.mrn,
      4  PAC051MPROFORMA.visitid,
      5  PAC051TPROFORMA.mrn,
      6  PAC051TPROFORMA.visitid,
      7  PAC052MTRANSBILL.mrn,
      8  PAC052MTRANSBILL.visitid
      9  from PAC051MPROFORMA,PAC051TPROFORMA,PAC052MTRANSBILL
     10  where
     11  (PAC051MPROFORMA.mrn=PAC051TPROFORMA.mrn)
     12  and
     13  (PAC051TPROFORMA.mrn=PAC052MTRANSBILL.mrn);
    CREATE VIEW pacviewproforma (mrn,visitid,mrn,visitid,mrn,visitid)
                                             *
    ERROR at line 1:
    ORA-00957: duplicate column name
    

    Please give different names to each column.

    Something like that...

    SQL> CREATE OR REPLACE VIEW pacviewproforma (MPROFORMA_mrn,MPROFORMA_visitid,TPROFORMA_mrn,TPROFORMA
    _visitid,MTRANSBILL_mrn,MTRANSBILL_visitid)
      2  As Select
      3  PAC051MPROFORMA.mrn,
      4  PAC051MPROFORMA.visitid,
      5  PAC051TPROFORMA.mrn,
      6  PAC051TPROFORMA.visitid,
      7  PAC052MTRANSBILL.mrn,
      8  PAC052MTRANSBILL.visitid
      9  from PAC051MPROFORMA,PAC051TPROFORMA,PAC052MTRANSBILL
     10  where
     11  (PAC051MPROFORMA.mrn=PAC051TPROFORMA.mrn)
     12  and
     13  (PAC051TPROFORMA.mrn=PAC052MTRANSBILL.mrn);
    
    View created.
    
    SQL> DESC  pacviewproforma;
     Name                                      Null?    Type
     ----------------------------------------- -------- ----------------------------
     MPROFORMA_MRN                                      NUMBER
     MPROFORMA_VISITID                                  NUMBER
     TPROFORMA_MRN                                      NUMBER
     TPROFORMA_VISITID                                  NUMBER
     MTRANSBILL_MRN                                     NUMBER
     MTRANSBILL_VISITID                                 NUMBER
    

    ORA-01730: number of column names specified invalid

    The list of the nmae column you specified for the CREATE VIEW must correspond with the list of SELECTION in the view.

    Twinkle

  • How to create hover without Jquery nice box

    Hello
    I have a requirement to create a bubble/info-stationary of the boxes for some of the items. I use "onmouseover =" toolTip_enable (event, this, "Please Enter your family name") "' in the HTML form element attributes.
    (1) it works fine, but it's the pointer points not to the good article isn't confusing.
    (2) I need to have a rectangle of size custom ToolTip
    (3) I need to use formats like underscore "BOLD", colors, etc. Is it that all we can do without the use of Jquery?

    Thank you
    Manoi.

    Hi Eric,.

    You might look at: [http://hungred.com/2009/07/31/how-to/tutorial-simple-cross-browser-tooltip-css/] we use CSS styles to display the ToolTip - and, as the text is contained in a normal SPAN tag, you should be able to style it

    Andy

  • How to create table containe blob column view?

    Hi, I would like to aske any type of blob data
    I have data containe blob clolumn type table

    I want to create view this table how do?
    and


    If I created the table view blob column data will be responsible for memory or what because that will cause some performance issues because the table contains enormous data?


    Thank you

    You must create the view as

      CREATE OR REPLACE VIEW 
      AS
         SELECT col1, col2, col3.....
         FROM    
         WHERE   
         ...etc...
    

    The Act of creating the view will not otherwise the data in the table underlying, all it will do is create a view definition.
    Select only the view will select data.

    If you don't need to select the BLOB column in the view, then you would not include it in the list of the columns in the view definition.
    If your LOB data are stored online, then it may be a significant selection of the view, even if the BLOB column is not indicated in the list of the columns in the view.

    Published by: dombrooks on June 1, 2009 10:12

  • How to create table of 288 HP push button in the PXI-6509 (3pcs)

    Hi all

    Need help...

    I am a beginner in labview. & her first time use OR for my project.

    We must push buttom about 288 HP control panel. We use PXI-6509 (3 pcs)

    & I do a code (in tie).

    but some time appear as a bug if we push a button push button after all. but some time is ok.

    Please correct the code.

    Thank you very much...

    It seems to work fine for me.  What do you mean by "sometimes appear like a bug?  How is it not behave like you want.

    A few recommendations:

    1. There is no logical reason for the node feedback on some of your cables of the error.

    2. you can turn some of your groups of buttons in a cluster.  This way you can work on changing the value of a cluster and do not have to set up 100's of changes made to the values of the individual controls.  You'd also be abe to easily use the cluster to table to transform your cluster of Boolean Boolean rather than building tables table by manually cabling up to 100's of controls.

  • How to create table of controls (Images, buttons) in ActionScript

    Hello!

    Could someone help with ActionScript and Playbook SDK?

    How can I create a two-dimensional array of controls (buttons, images, text fields) in ActionScript?

    And how do I use radio buttons in ActionScript?

    Hey,.

    keys and parts do not have ID like in html and javascript. That being said, its impossible to do it like that. the best approach is to create your own class that extends the LabelButton (or whatever component you need) and have an id property that is implemented. so, you can set a code personal to her. I've implemented what you asked below. You can apply this to other components as well enough to make changes to the class and modify the extension. Here is the code:

    LabelButtonTest.as (main application class):

    package
    {
        import flash.display.Sprite;
        import flash.display.StageAlign;
        import flash.display.StageScaleMode;
        import flash.events.MouseEvent;
    
        [SWF(width="1024", height="600", backgroundColor="#CCCCCC", frameRate="30")]
        public class LabelButtonTest extends Sprite
        {
            private var myButtons:Array;
    
            public function LabelButtonTest()
            {
                super();
    
                // support autoOrients
                stage.align = StageAlign.TOP_LEFT;
                stage.scaleMode = StageScaleMode.NO_SCALE;
    
                /*
                 *  Initialize your array of 2 X N (in our case we will be using 10)
                */
    
                myButtons = new Array(new Array(), new Array());
    
                /*
                 * Now we set up our array, first doing the first row and
                 * set up 10 buttons with their own ID using the constructor
                 * for our custom class CustomLabelButton(ID)
                */
    
                for (var i:int = 0; i < 10; i++)
                {
                    var myBtn:CustomLabelButton = new CustomLabelButton(i);
    
                    myBtn.label = "Button " + i;
                    myBtn.setSize(100, 50);
    
                    myBtn.addEventListener(MouseEvent.CLICK, onClickEvent);
    
                    myButtons[0].push(myBtn);
    
                }
    
                /*
                 * We do the same for the second row of buttons, starting
                 * with 10
                */
    
                for (var i:int = 10; i < 20; i++)
                {
                    var myBtn:CustomLabelButton = new CustomLabelButton(i);
    
                    myBtn.label = "Button " + i;
                    myBtn.setSize(100, 50);
    
                    myBtn.addEventListener(MouseEvent.CLICK, onClickEvent);
    
                    myButtons[1].push(myBtn);
                } 
    
                /*
                 * Finally we cycle through our arrays and add them to our display
                 * this wil produce two rows of 10 buttons going accross
                 * each when clicked will call the funciton onClickEvent and
                 * trace out their ID to the debugger
                */
    
                for (var i:int = 0; i < 10; i++)
                {
                    var myBtn:CustomLabelButton = myButtons[0][i];
                    var xPos:int = (i * 100) + 10;
                    var yPos:int = 10;
    
                    myBtn.setPosition(xPos,yPos);
    
                    addChild(myBtn);
                }
    
                for (var i:int = 0; i < 10; i++)
                {
                    var myBtn:CustomLabelButton = myButtons[1][i];
                    var xPos:int = (i * 100) + 10;
                    var yPos:int = 60;
    
                    myBtn.setPosition(xPos,yPos);
    
                    addChild(myBtn);
                }
    
            }
            public function onClickEvent(e:MouseEvent):void
            {
                /*
                 * Print out ID of the button thats clicked
                */
                trace("the button ID is: " + e.target.id);
            }
        }
    }
    

    CustomLabelButton.as (our custom label with the ID property button class):

    package
    {
        import qnx.ui.buttons.LabelButton;
    
        public class CustomLabelButton extends LabelButton
        {
            private var _id:int;
    
            public function CustomLabelButton(num:int = 0)
            {
                super();
    
                id = num;
    
            }
            public function set id(num:int):void
            {
                _id = num;
            }
            public function get id():int
            {
                return _id;
            }
        }
    }
    

    run the code and see how it works. I hope that's what you're looking for. Good luck!

  • Select Insert in a table without duplicate line

    Hi guys,.

    I need to migrate the data from table A in the old schema in table B of the new scheme.
    The two tables contain exactly a similar structure.
    For example: table A have neck one and col b, table B col, col b
    The two table has applied the unique constraint on A col, col B
    Col B, col A

    now, my intention is to insert, select into table B to table A.
    If there is similar data in Table B, I want to keep the data in Table B.

    Please, how do I design the query?

    A solution would be

    insert into b (select * from a minus select * from b)
    
  • How to create tables for use in php/SQL Web site

    Sorry to ask the fundamental question because I am known.

    I built a site dw to registration of several products. I was following DW, the Missing Manual book tutorials. The tutorial provides data downloadable tabels in a folder with the extension .sql. I can't find anywhere a statement that the way in which the .sql file is created.

    Second question: if it can be created in Access 2007, please tell me how.

    Thank you very much.

    Try reading the following article for some tips. http://dev.mysql.com/tech-resources/articles/intro-to-normalization.html. Life becomes much easier when you understand the basic principles of standardization.

Maybe you are looking for

  • Connection problem Ipod mini, 2005 with win10 model

    Hello! I have an Ipod mini, 2005 model, and I decided to use it again after many years. My problem is that when I connect the camera with my PC (win10 + itunes 12.3), there is nowhere in my PC or itunes. It starts to load, but that's all. Is there a

  • Data acquisition in LabView for other suppliers DAQ cards that NEITHER

    Hello I am a beginner in LabView programming. I have a 32 channels base PCI card DAQ (i.e. PCI-1602 of the manufacturer, ICPDAS) and I want it to interface with Labview 8.5. So how cards DAQ in Labview 8.5, which are manufactured by other suppliers t

  • What is the command of shortcut for all windows get the information from the computer?

    What is the command of shortcut for all windows get the information from the computer? instead of going to the computer / my computer > properties > discover the pc... basic information or go to the control panel... just a command for windows xp, vis

  • The search results in Windows Explorer not always highlighted.

    Windows Explorer in Windows 7 is just great! But why is not always highlight the results of research (especially the Word documents) is beyond me. In a typical search result list displays some highlighted, others do not. Why is this?

  • Windows 8 and ms - dos

    I have a question about ms-sΘlectionnΘ, I would like to know this work ms - dos in windows 8 in virtual or not? exactly what ms - dos's virtual or the sepreat working near windows?Another questin what exactly what to do (ms - dos) under windows? only