How to remove dotted green lines in pages 5.2 documents?

How do i remove dotted green lines in Pages 5.2 documents?

That's right. Use Pages '09.
You can export to Pages '09 from Pages 5.2.
Peter

Similar Messages

  • How to give no of lines per page in alv report

    hi
    could anybody tell me
    how to give no of lines per page in alv report
    i need bottom of page too
    if possible plz send the code too
    it ll be very helpful to me
    thanx
    kals.

    Hi,
    This is possible, using some of the events in the ALV.
    You could use AFTER_LINE_OUTPUT event and call you form after say, a certain line count is reached on the list output.
      MOVE 'AFTER_LINE_OUTPUT' TO gw_event-name.
      MOVE 'AFTER_LINE_OUTPUT' TO gw_event-form.
      APPEND gw_event TO gt_events.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
           EXPORTING
                it_events                = gt_events[]
    and define the form for each event as follows - this would be a dynamic call by the ALV.
    *&      Form  after_line_output
    *       Form for the After Line Output Event in the internal table
    *      --> rs_lineinfo
    FORM after_line_output USING rs_lineinfo TYPE slis_lineinfo.
      IF sy-linno eq v_linno.          "Defaulted value for line count
        perform write_footer.
        NEW-PAGE.
      ENDIF.
    ENDFORM.                    " after_line_output
    For lines per page:
    rs_lineinfo-tabindex would give you the index of the current line in the list, which you could use to read the t_outtab table, and reduce the line count of items displayed on the earlier page.
    There are a few other events too, like BEFORE_LINE_OUTPUT and END_OF_LIST which you can use as required and print the data.
    Regards,
    Anil.

  • How to remove a list from a page ?

    I added a list to a page and then later decided it would be easier to add the list to page 0. Now I can't find how to remove the list from the page.
    Edited by: Rene W. on Oct 6, 2008 1:52 AM

    Ok sorry I understood you wrong then.
    I tried to recontruct your problem and did the following things.
    1. Created a new list in: Home>Application Builder>Application 305>Shared Components>Lists>Create / Edit List
    2. Created a new region on page 2: Home>Application Builder>Application 305>Page 2>Create Region Type: List, Name:"test1"
    3. Created a new region on page 1: Home>Application Builder>Application 305>Page 1>Create Region Type: List, Name: "test2"
    4. Deleted region "test1" on page 2
    5. List and region still survived on page 1. :D
    Tobias

  • I am missing some appleworks abilities I do not find on pages.  How does one "draw" vertical lines in a word processing document?

    How do I "draw" a vertical line on PAGES word processing document?

    Why not ask in the Pages forum.
    Update

  • How to remove the thick line at the end of each page of my report

    Please how do I remove the thick line that appears at the end of each page of my report anytime I publish the report unto the Web.

    Bring up the property inspector against the report object. In here you will see the settings for HTML output. Remove the entry against the "After Page Value" property.

  • How to remove dotted lines in a single column using javascript?

    Hi,
    In InDesign document,i want to remove the dotted lines in a single column using javascript.here i want to remove only the dotted lines has presented at the end of text in a cell.kindly help me if anyone has idea regarding this.
    Thanks in advance!
    Vimala L

    Hi,
    Those dotted lines have added in the document by manually. The dotted lines have presented in all the columns but in a single column i need to remove it.
    Thanks,
    Vimala L

  • Laserjet 2605dn color printing problem, Blue/green line on page.

    I have an HP color laserjet 2605dn that has started to print a faint,thin  blue/green line from top to bottom about 3 inches in from the entire right edge of every page. I ran the cleaning cycle with no change. Any suggestions on how to correct this?

    I have very similar problem on my 2600n which is printing 2 vertical green lines very close together about 1.5 inches from left edge. All toners are in supply override mode with black toner reading: Estimated Pages Remaining 0
    Color cartridges contain toner with 329 pp remaining according to supply status page.
    Is this problem likely to disappear when toner cartridge(s) are replaced?

  • How to remove the black line from a stacked canvas at run time???

    Hi All,
    I've developed a stacked canvas within a content canvas, when I run the form the stacked canvas apeared with a black line takes it.
    How to remove this line or how to disappear this line at run time??
    I tried to do this by putting (no line) in tools palette to the line color tool after selecting the black line one and after selecting the stacked canvas another once, but this did not resolve the problem!
    I need something else:
    I put the stacked canvas at detail data block and it didn't appear since I execute query in master data block
    How to appear the stacked canvas directly before executing query in master data block???

    Hi,
    u mean the border line? In stacked canvas property, select contour/outline and set it to none.
    Make sure, the stacked canvas is behind the content canvas in the objectnavigator. Then check your
    properties of the stacked canvas:
    - Position on content canvas
    - size
    - size of clipping
    Set stacked canvas property automatic visible to yes.
    Make sure the stacked canvas is not overlayed by other stacked canvas or items.
    Attackwave

  • How to remove space after paragrph in pages on ipad

    Can't figure out how to remove space after each paragraph in Pages for Ipad

    Settings > General > International > Region Format
    Set it to your country to format numbers and dates in the way your country does.

  • How to remove a favorite on Home Page

    We have a favorite listed on that we would like to remove from Yahoo Home Page. This is in Favorites NOT bookmarks.

    Did you check the Yahoo help pages to see how to customize that Yahoo page?
    How did you previously set up that page?

  • How to remove responsibilty name custom oaf page

    Hi,
    Can any one please help me how to remove the responsibility name custom oaf page.
    i developed custom oaf page.while opening those pages responsibility name is also displyed.
    but i dont want to be displayed responsibility name in page.
    Please help me how to remove name of the responsibility in oaf page.

    Hey hi there ,
    I think you are trying to hide the Product branding that appears right next to the corporate image ( Oracle image ) ,
    well you can do this using controller code , in processRequest of your controller add this code
    Import :
    import oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean;
    import oracle.apps.fnd.framework.webui.OAFormattedTextHelper;
    import oracle.apps.fnd.framework.webui.beans.OAFormattedTextBean;
    OAFormattedTextBean bean =
    (OAFormattedTextBean)createWebBean(pageContext, FORMATTED_TEXT_BEAN,null,"product_brand");
    bean.setText(" ");
    OAPageLayoutBean page = pageContext.getPageLayoutBean();
    page.setProductBranding(bean);
    Once you compile and run the page notice that Product branding will no longer appear on the screen .
    Try this and let me know if its not working .
    --Keerthi                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to remove the blank lines at the end of the JTextArea .

    Hi,
    I need to remove the blank lines in the JTextArea at the end. Suppose i am giving 'A' in the first line and press the enter key two times, after i am giving the 'B' in the third line and press enter key for two times. I need to remove, the last two lines of JTextAreae, . How i can remove these lines?

    String#trim() removes all whitespace from both ends of the String.
    The requirement was to remove line breaks from the end of the String only.
    String#replaceAll with a suitable regex would do the trick. Untested regex for this:text.replaceAll("[\\n\\r]+$", "")db

  • How to remove the gray line in JDeveloper?

    Hello,
    I'm working with JDev now.Now I'm facing a problem, when I want to format my codes in JDev I find many lines of code changed to double. I also notice that the point for newline is the gray line in the coding area.
    Now I want to remove the gray line or move it more right so I can format my codes really more beautiful.
    If there is anybody knows the way,please show me how to deal it.Thank you.

    Sorry,your answer has not figure my issue. The link you gave me does not contain my question.Thank you for your answer.

  • How to remove infopath ribbon using Master Page?

    Hi All,
    I would like to remove infopath ribbon using Master Page, using f12 removed like "<div id="s4-ribbonrow"
    class="s4-pr s4-ribbonrowhidetitle" style="display:none">". But how to perform in original master page? Thanks in advance!

    Hi,
    Based on your description, my understanding is that you want to remove InfoPath ribbon using Master Page.
    using F12 to find the <div id=”RibbonWrapper”> section:
    Navigate to :C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\TEMPLATE\LAYOUTS\ FormServer.aspx. Add the following CSS into <head runat="server"></head>section:<style type="text/css">
    #RibbonWrapper
    display: none !important;
    </style>
    Best Regards,Lisa Chen
    Lisa Chen
    TechNet Community Support

  • How to remove inser html here from page

    I have just inserted a contact form made externally and remotely hosted to my contact page. Unfortunately there is a totally unnecessary 'Insert your html here 'above the form. Please can someone tell me how to remove it. I made the form in 123 form maker easy to do brilliant customer service.

    Hello,
    Please right click onthe form and click on Edit HTML.
    Now at the top of the code it might have a "insert your HTMl Here". Please delete it and click  on "OK"
    Regards,
    Sachin

Maybe you are looking for

  • Please Help - Original iMac 333mhz (purple)

    Here's the story. A friend of mine knows a little boy whose parents passed away and they want to give him a computer for Christmas... she asks me where she can buy a cheap used one and I offer her my purple iMac. I pull it out, plug it in and turn it

  • SRM 5.0/7.0 and vendor org. unit

    Hi Experts, I have a question regarding the org. structure i SRM. We are trying to take the SRM system from SRM server 4.0 to 7.0. I have an understandig that SRM after 4.0 don't use the vendor org. unit, to allocate the vendors in anymore. I need a

  • Urgent help in JTabbedPane

    Hi, Can anyone tell me that how do i split JTabbedPane in GUI? I have an application which can be used to fill in data.After inserting values in another interface,JTabbedPane will be created according to different values which i inserted ealier,Now t

  • Online Database for Students?

    I am attempting to take a class on Oracle. Problem is my computer is down at home. Is there an online location that has an Oracle Database that I could use to create my own little database. It will be nothing much just a few small tables for queries

  • Any config.xml fields not viewable/editable in admin console?

    While reading through the WL 10.3 docs, I discovered something very unexpected. There are some attributes that you can define in the config.xml that are not viewable or editable in the admin console. I found this in the "Programming WebLogic JTA" man