Add a horizontal guide to just one column

Hey all,
This seems like it's probably got a simple answer, but I've been beating my head against a wall all morning trying to figure it out so clearly it's not so simple to me I'm trying to add a horizontal guide to a single column in a three-column document (basically I want just that column to have two rows). The end result is going to be a tri-fold brochure type thing with two perforated stubs on one of the thirds. Any ideas out there?

As far as I know, there are only two ways to make a guide. One is for the guide to end at the page boundaries by dragging it into the page:
…and the other extends the guide into the pasteboard by dragging into the pasteboard:
You can fake what you want by drawing a rule (as Peter suggested), but if you don't want it to print, select it and go to Window>Output>Attributes and check the Nonprinting checkbox. Create it on the master page if you want it on all pages.

Similar Messages

  • How to change font in just one column of JTable

    I have a table with 4 column.
    I want to have Courier font in column number 2, and Arial in columns number 1, 3 and 4.
    With:
    table.setFont(new Font("Courier New", Font.PLAIN, 12));
    I can set fonts in all columns but how to set font in just one column.
    Thanks
    Srdan

    Hi,
    there are 2 methods of JTable where every rendering resp. editing component "comes" through - prepareRenderer(...) and prepareEditor(....) - by overwriting this methods and calling its super method first you get the component and can manipulate it before you return it. This component is exactly that, what is used for rendering resp. editing afterwards.
    greetings Marsian

  • Is it possible to Lock just one column value in a row?

    Is it possible to Lock just one column value in a row
    A Java Developer has just asked me if it is possible to Lock just one column value in a row in Oracle
    select ename from emp where empno=7369 for update;
    EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
    7369 SMITH      CLERK           7902 17-DEC-80        800                    20
    will lock the entire row with empno=7369.
    But is it possible to lock one column value from this row, like SAL=800 ?
    Edited by: J.Kiechle on Jan 8, 2009 10:45 PM

    J.Kiechle wrote:
    Is it possible to Lock just one column value in a rowNo. Locking granularity is a row.

  • Create an object for just one column in resultset?

    Does it make sense to return a result set of one column into an object that represents that table? It seems like a waste of memory, but maybe I am missing something. Also all generic DOA's I have found don't deal with this situation, so maybe someone can help me with how I think about this problem in my design. Thanks for the thoughts.

    >
    Plan B is to just return a list of Strings instead of a list of "some object". The issue with this is the ease of creating a generic DAO that is easy to program to. Having a DAO for each "table" class seems to be the best practice that is offered out there.
    >
    Well a String IS an object.
    From an architecture perspective you should model a table as a table. So if you have a table of one column you should still model it as a table. A table is a table is a table and you should generally treat it as such until or unless there is a compelling reason not to.
    If you step back from the 'implementation' and refocus on the 'design' and requirements one of those requirements is to identify the sources of data that your application needs. Sounds like that data, at the server level is in a table and the typical interface between an application and a database is via tables. Makes no difference if you need one row or 1000, one column or 30 columns the first focus is on the data source.
    So the interface between an application, in your case a Java app, and a database server will generally involved tables. That means you should probably still use a standard DAO (I assume you mean Data Access Object).
    A generic table DAO would typically have functionality to deal with tables and not just an arbitrary object. It would have getters and setters, functionality to support multiple rows and might even know about columns.
    In good data models tables almost never have just one column. Even a simple lookup table usually has an ID or CODE column and then a value column for the actual data. So if that one column table suddenly becomes two or more columns you will have to refactor your entire architecture to then use a standard DAO.
    That is why the statement you made is true.
    >
    Having a DAO for each "table" class seems to be the best practice that is offered out there.
    >
    Unless you have some real reason not to I suggest you stick with that practice. That will make you code more scaleable and more consistent.
    From an architecture perspective.

  • Sort just one column

    Is it possible to just sort one column without all the other columns sorting? I want to be able to manipulate a list of students in different ways (orders) without the other column changing order. I ussed to used excel microsoft and I'm sure I was able to do this with that program. Does Numbers allow this?

    James,
    Copy the column that you wish to sort and Paste it to an open part of the Sheet's canvas. This will create a 1-column table. Sort it. Copy the sorted table and Paste it back where it came from. The easiest and most reliable way to Select an entire column for Copying or Pasting is to click on the column's Label.
    If you describe the entire table, it may be possible for us to suggest another approach.
    Jerry

  • How to avoid duplicat just one column

    Hi,
    I've this table:
    COD_ID.........NAME
    001............AAAA
    001............AAAA
    001............AAAA
    011............CCCCCCC
    011............CCCCCCC
    011............CCCCCCC
    011............CCCCCCC
    032............FFFFF
    032............FFFFF
    223............TTTTTTTTTT
    223............TTTTTTTTTT
    223............TTTTTTTTTT
    223............TTTTTTTTTT
    223............TTTTTTTTTT
    223............TTTTTTTTTT
    I'd like to get this output:
    COD_ID.........NAME
    001............AAAA
    ...............AAAA
    ...............AAAA
    011............CCCCCCC
    ...............CCCCCCC
    ...............CCCCCCC
    ...............CCCCCCC
    032............FFFFF
    ...............FFFFF
    223............TTTTTTTTTT
    ...............TTTTTTTTTT
    ...............TTTTTTTTTT
    ...............TTTTTTTTTT
    ...............TTTTTTTTTT
    ...............TTTTTTTTTT
    I want have just one cod_id for each name and null cod_id for other cod_id.
    Have you any idea?
    Thanks!

    use the BREAK on sql*plus.
    SQL> select * from emp;
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7566 JONES      MANAGER         7839 02-APR-81       2975       1000         20
          7902 FORD       ANALYST         7566 03-DEC-81       3000                    20
          7839 KING       PRESIDENT            17-NOV-81       5000                    10
          7698 BLAKE      MANAGER         7839 01-MAY-81       2850                    30
          7782 CLARK      MANAGER         7839 09-JUN-81       2450                    10
          7369 SMITH      CLERK           7902 17-DEC-80        800                    20
          7499 ALLEN      SALESMAN        7698 20-FEB-81       1600        300         30
          7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30
          7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400         30
          7788 SCOTT      ANALYST         7566 09-DEC-82       3000                    20
          7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0         30
          7876 ADAMS      CLERK           7788 12-JAN-83       1100                    20
          7900 JAMES      CLERK           7698 03-DEC-81        950                    30
          7934 MILLER     CLERK           7782 23-JAN-82       1300                    10
    14 rows selected.
    SQL> break on deptno;
    SQL> select deptno, empno, ename, job
      2    from emp
      3  order by deptno;
        DEPTNO      EMPNO ENAME      JOB
            10       7839 KING       PRESIDENT
                     7782 CLARK      MANAGER
                     7934 MILLER     CLERK
            20       7566 JONES      MANAGER
                     7369 SMITH      CLERK
                     7902 FORD       ANALYST
                     7788 SCOTT      ANALYST
                     7876 ADAMS      CLERK
            30       7698 BLAKE      MANAGER
                     7499 ALLEN      SALESMAN
                     7521 WARD       SALESMAN
                     7900 JAMES      CLERK
                     7844 TURNER     SALESMAN
                     7654 MARTIN     SALESMAN
    14 rows selected.
    SQL>

  • How do I add iTunes gift card to just one family member?

    I have 4 children under 13 and they're on the Family Sharing Plan, but when one gets an iTunes gift card, I want to add it to just his or her account so the siblings don't use it.  How do I do that?

    You should be able to log into their account and redeem the gift card onto that account, it should then only be available for him/her to spend - if using your computer's iTunes then log out of our account via the Store > Sign Out menu option, that will then change to a Store > Sign In option
    For how family sharing purchases are billed : Family purchases and payments - Apple Support
    After you set up your family, any time a family member initiates a new purchase it will be billed directly to your account unless that family member has gift or store credit. First, their store credit will be used to pay the partial or total bill. The remainder will bill to the family organizer's card. As the family organizer, any receipts generated by the transaction will be sent to you. Learn more about how iTunes Store purchases are billed.

  • I want know to how to stop adds which is irretating me just one click i am geting 5page adds just i cant browse freel i really feel irritate

    i am using window 7 and fire fox 29 but i am not happy really because when i try to open page i am getting more 5 page and suddenly adds comes first and it take to time close but immidiatly it come again i really just cannot browse freely i feel bad really the best explorer is doing best but way not you explorer is not allow adds but way you crome and opera more adds which comes centre page corner page last page which you luck get price myatas and so many adds which irritating me i cannot brouse freely same thing also requist to crome and opera also please help to stop adds unnesary comes ways
    when i tried to open one page but i am opening other page this is very bad feeling and if open other page i wast date it give me more money unnesary data service provider please help me to solvue this proble which is very big problem for me

    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Concacenate Many Columns text into one Column

    Hi,
    I have many columns with text in it. I would like to ideally concatenate these column content into just ONE column.
    Please help work out how to do this as I have no idea.
    I am somewhat familiar with CMD so if you can help with this urgently that would be SO awesome.
    Thanks
    :)

    890635 wrote:
    Thanks again...
    So I want to display this data eventually on forms. So I think I do need to create a blank column.
    so let's say I want the concatenated data to end up in "Final_Delivery".
    How to do that?
    Thank youI dont have any idea about Forms...But just a guess that for form as well you must be writing some SQL, and you can use the sql there directly. Otherwise if you want to get it inserted into new column in existing table....First you have to add a new column to your table and then run update Statement to populate that data..similar to this
    SQL> select * from emp;
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO       TEST INFO
          7369 SMITH      CLERK           7902 17-DEC-80        800                    20
          7499 ALLEN      SALESMAN        7698 20-FEB-81       1600        300         30
          7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30
          7566 JONES      MANAGER         7839 02-APR-81       2975                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400         30
          7698 BLAKE      MANAGER         7839 01-MAY-81       2850                    30
          7782 CLARK      MANAGER         7839 09-JUN-81       2450                    10
          7788 SCOTT      ANALYST         7566 19-APR-87       3000                    20
          7839 KING       PRESIDENT            17-NOV-81       5000                    10
          7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0         30
          7876 ADAMS      CLERK           7788 23-MAY-87       1100                    20
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO       TEST INFO
          7900 JAMES      CLERK           7698 03-DEC-81        950                    30
          7902 FORD       ANALYST         7566 03-DEC-81       3000                    20
          7934 MILLER     CLERK           7782 23-JAN-82       1300                    10
    14 rows selected.
    SQL> update emp set info=to_char(empno)||' '||ename||' '||job;
    14 rows updated.
    SQL> select * from emp;
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO       TEST INFO
          7369 SMITH      CLERK           7902 17-DEC-80        800                    20            7369 SMITH CLERK
          7499 ALLEN      SALESMAN        7698 20-FEB-81       1600        300         30            7499 ALLEN SALESMAN
          7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30            7521 WARD SALESMAN
          7566 JONES      MANAGER         7839 02-APR-81       2975                    20            7566 JONES MANAGER
          7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400         30            7654 MARTIN SALESMAN
          7698 BLAKE      MANAGER         7839 01-MAY-81       2850                    30            7698 BLAKE MANAGER
          7782 CLARK      MANAGER         7839 09-JUN-81       2450                    10            7782 CLARK MANAGER
          7788 SCOTT      ANALYST         7566 19-APR-87       3000                    20            7788 SCOTT ANALYST
          7839 KING       PRESIDENT            17-NOV-81       5000                    10            7839 KING PRESIDENT
          7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0         30            7844 TURNER SALESMAN
          7876 ADAMS      CLERK           7788 23-MAY-87       1100                    20            7876 ADAMS CLERK
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO       TEST INFO
          7900 JAMES      CLERK           7698 03-DEC-81        950                    30            7900 JAMES CLERK
          7902 FORD       ANALYST         7566 03-DEC-81       3000                    20            7902 FORD ANALYST
          7934 MILLER     CLERK           7782 23-JAN-82       1300                    10            7934 MILLER CLERK
    14 rows selected.
    SQL>Regards,
    Navneet

  • Adding a plug-in to just one audio file?

    Hello,
    I'm really new to Logic Pro and I was curious if there is a way to add a plug-in to just one audio file in a track and not the whole track?  Thanks!

    Or you can press 'A' on your computer's keyboard and where it says 'Volume', click and hold to bring up the automation options. Choose 'Bypass' for that plug -in slot and add four nodes to the line by clicking on it in four places. You can get the plug in to be bypassed until the appropriate place that way.

  • Change color of one column in chart

    Hi
    is there a way to change the color of just one column in a column chart? I want to highlight one column but I can't seem to select just that column.
    Thanks

    Welcome to Apple Discussions
    Click on the table to select it then click on the letter column heading to select the desired column. Now go to the object inspector & select Color Fill from the drop-down menu if it's not already chosen then click on the color box to bring up the color chooser. Select the color you want to fill the column.

  • How To Insert Cells Into One Column Only

    Can anyone advise me, how to insert a cell (or multiple cells) into +just one column+ whilst leaving everything else on the sheet exactly as it is?
    I'm migrating from Excel and can't find this functionality in Numbers
    Thanks in advance for any help

    Thank you for taking the time to reply, thereby removing the misery of me continuing to search for this absent function!
    I really wanted to like the iWork apps! I recently rebuilt one of my rigs and had the intention of making it a Microsoft-free computer - hence the purchase of iWork.
    However, the last few days of 'learning curve' I have stumbled upon an increasing number of incompatibilities and limitations when compared to Excel, and the lack of the function to insert a single cell into a sheet is the final deal-breaker for me, sadly.
    So, reluctantly, I am going to install my Microsoft Office 2008 suite and get back to where I was before. I will continue to look at the iWork apps but I suspect they'll fall to the wayside.
    Once again, many thanks for confirming what I was reluctantly concluding.

  • Deleting duplicate entries based on one column

    Guys,
    I have two internal tables i_tab1 and i_tab2.
    I want to copy contents of i_tab1 into i_tab2 while removing any duplicate entry.
    i am comparing on just one column in i_tab1.

    Hi,
        Try this way
    LOOP AT itab2 INTO wa_itab2.
    READ TABLE itab1 INTO wa_itab1 WITH KEY field = wa_itab1-field BINARY SEARCH.
    IF sy-subrc = 0.
    code
    MODIFY itab2 INDEX sy-tabix FROM wa_itab2 TRANSPORTING field. " field is modified field
    ENDIF.
    ENDLOOP.
    Regards
    Bala Krishna

  • Add one column of string to columns of integer

    Hi there,
    Could someone help please. 
    I would like to add one column of strings to a few columns of integer. 
                                                           --------- Added elements ------ 
    20C=           100     101    102           20C=100     20C=101    20C=102
    15C=           200     201    202          15C=200     15C=201    15C=202
    10C=           300     301    302          10C=300     10C=301    10C=302
    Thanks for help. 

    Hoverman wrote:
    I had a look at the tutorial link you sent. They are not particularly relevant to my question. 
    Why do you think I am posting a question? I have already spent a few hours searching forum and looking at examples. It would be more helpful to have a relevant example or a solution.
    Thanks for your time.  
    What is your problem here? RavensFan gave you information quite relevant to your task, but you had not (and still have not) answered his questions, so he could not (nor anyone else) tell where in your task you are having trouble. Do you know how for loops work, with respect to outputs? Your questions imply that you need to spend some real time learning LabVIEW, not just "having a look at the tutorials."
    Hmm, it looks like you had a similar problem with your last question, and you still have not indicated that you understood how to solve it.
    Cameron
    To err is human, but to really foul it up requires a computer.
    The optimist believes we are in the best of all possible worlds - the pessimist fears this is true.
    Profanity is the one language all programmers know best.
    An expert is someone who has made all the possible mistakes.
    To learn something about LabVIEW at no extra cost, work the online LabVIEW tutorial(s):
    LabVIEW Unit 1 - Getting Started
    Learn to Use LabVIEW with MyDAQ

  • Add one Column of Equipment Number in AR01 TCode

    Hi,
    We want to add one Column of Equipment Number in AR01 report output...
    Please let me know, how can we do it???

    That's right dear..
    But in OAVI, following tables used..
    ANLAV...................Asset Reporting: ANLA Fields Plus Cost Center...
    ANLAV_ADDR     .......Address Data for Asset on the Report Date
    ANLB......................Depreciation terms
    ANLCV...................Asset Reporting: ANLC Fields Plus Various Totals
    ANLP......................Asset Periodic Values
    ANLU......................Asset Master Record: User Fields
    ANLV......................Insurance data
    ANLZ......................Time-Dependent Asset Allocations
    And Equipment Number is not showing in above tables...then how can we do it...
    Can we add another Table in OAVI for Equipment Number and which one is suitable for this...
    please guide...

Maybe you are looking for

  • Embed flash exe in a director exe

    I have a Director project programmed in 2004 with Macromedia Director MX 2004 that is a standalone executable program. The client has sent me an asset he wants embedded in the program that is itself a Flash .exe program. Is it possible to embed an ex

  • Signatures on delivery documents

    hi all i am trying to find a way to be able to get signatures of people picking up an order on to the system. for instance, if a customer picks up an order and signs for it, i want to be able to have that signature show up on the delivery pld. what w

  • Unable to download Facebook update

    I am getting the error "unable to download" Facebook update. Tried deleting app and reinstalling but same issue. Facebook app will appear in phone but its greyed out. I have tried resetting. I have iPhone 5 running version 6.1.4.

  • Keyboard suddenly stopped working

    The keyboard and trackpad suddenly stopped responding on my Macbook Pro 13" (Fall 2011) when I was doing regular work. When I rebooted the computer it says it cannot find any keyboard. Any suggestions? I'm sorry I don't have much more to add. edit: N

  • Repository views for RMAN Catalog check

    Hi All, Is there any view which tells if the database is using catalog for backup, we have scheduled the rman using OEM, now i need to create a UDM which sends an alert if not using catalog, i would like to do this using the sql command with OEM View