Blank line Between Page

Hi All
I want to generate text file by report.
but my output have one blank record at between page but I don't want it.
I want to list data in tabular style like using
sql script select statement but I have to use a report.
Please Tell me.
null

doble click on report_name
and in property section
go report_escape then in after page value
clear this
<hr size=5 noshade>
siddharth singh
null

Similar Messages

  • No blank line between address node in smartform

    hi all ,
    customer want to delete the blank line between address , is there a way to solve this ? i just want to use the address node.
    regards
    Kevin

    For the paragraph format used with the ADDRESS command, indicate that you don't want blank lines.
    Eg.    /: ADDRESS PARAGRAPH ZD
    So for this Paragraph Format 'ZD'  check the checkbox 'No Blank Lines'.

  • Export Excel Data only causes blank line between 2 lines of records

    Hi,
    I wrote a complete winform application using CR2008.
    For information :
    C# Framework 3.5
    Windows XP SP2 or Windows Server 2003 SP1
    CR2008 SP1
    Application allow to preview report. In the preview window (CR activx) there is a "letter icon" to export report in several format.
    -RPT
    -PDF
    -DOC
    -XSL
    -XSL Data only
    When I export with "Excel Data only" format, I always have a blank line between 2 lines of records in Excel.
    Is there a way to supress them from VS2008 ?
    Thanks a lot for your reply,

    Hello, Jonik;
    Do you see the same blank lines when you export to Excel Data only in the Crystal Reports designer?
    Elaine

  • Can I change the dashed line between pages in 2up Display mode?

    Did anyone ever figure out an answer to this query: Remove dashed page lines in two up mode?
    Or did it get fixed or modifiable in a later version?
    I'm viewing a pdf in two-up mode and I hate the dashed line Acrobat uses to indicate the gutter line between pages.
    I don't want to export as spreads from the indd doc because it ruins pagination.
    I wouldn't mind changing it to a solid hairline. the dashes are really distracting.
    I don't like Showing Gaps between pages either.
    Anyone have a way to modify that dividing line in regular two-up mode?
    Thanks.

    Is there a way to change this?
    No.

  • TB 31.4 when compsing a message, has introduced a spurious blank line between the address boxes and subject box.

    When writing a new message I used to see two lines of address boxes followed by the subject line. So, when sending an email to a single recipient, that persons address would remain on screen as I composed the email.
    As of version 31.4 the initial "Write" window shows a single address line, the subject line, and a blank line between them. The consequence is that, upon entering the recipient's address, it immediately scrolls up and can no longer be seen. This happens regardless of how I enter the address i.e. start to type, select from address book and hit ENTER or TAB, or indeed if I choose an address from the address book sidebar. (See "capture1.png")
    If I increase the space available for the header data in the "Write" window I still get a blank line between the address lines and the subject line (see "capture2.png"). Furthermore, the next time I go to compose an email I am back with the original version of the "Write" window, as shown in "capture1.png".

    You might want to drop the author an email and let him know. It is not a major thing, but something that would probably require only a minor fix.
    I have found him helpful, but slow to reply. He is always on holidays when I email him.

  • Dashed line between pages

    Is it possible to avoid the dashed line between pages when "Show Gaps Between Pages" is unchecked? In other words is it possible to have the 2 pages join seamlessly, no gaps, no dashed lines?
    Thanx,
    Guido

    "I would like to export the document to PDF using the spreads option, so that the spreads are combined into 1 page.
    However, is there a way for the PDF to recognise the page numbers originally specified in InDesign?"
    When you combine pages in a spread you make one page in Acrobat. I can't see how you would expect Acrobat to see this as
    two pages.
    k

  • Need a Blank line between Text field data

    hello friends, Happy New Year..
    i have a varchar2(200) size field and i am Entreing data into it like this;
    Chairman  Name1
    Member    Name2
    Member    Name3
    Member    Name4
    Member    Name5
    Member    Name6
    Secretary Name7what to do is, insert an a blank line between all lines of this text field. The output to like this ;
    Chairman  Name1
    Member    Name2
    Member    Name3
    Member    Name4
    Member    Name5
    Member    Name6
    Secretary Name7The names are separated by pressing Enterkey (i dont know its equivalent chr(10) or chr(13).
    TYVM.

    You can also try the below :
    Assumption here is that you will always have data in that column in 7 lines.
    rec.rowno in (2,4,6,8,10,12,14) is included to create empty row in between each row.
    create table test(a varchar2(200));
    insert into test values('Chairman  Name1
    Member    Name2
    Member    Name3
    Member    Name4
    Member    Name5
    Member    Name6
    Secretary Name7');
    commit;
    select
           case
             when rec.rowno = 1 then
                   substr(a,1,instr(a,chr(10),1,1) - 1)
             when rec.rowno in (2,4,6,8,10,12,14) then
                  null
             when rec.rowno = 3 then
                   substr(a,(instr(a,chr(10),1,1)+1),instr(a,chr(10),1,2))  
             when rec.rowno = 5 then
                   substr(a,(instr(a,chr(10),1,2)+1),instr(a,chr(10),1,3))                          
             when rec.rowno = 7 then
                   substr(a,(instr(a,chr(10),1,3)+1),instr(a,chr(10),1,4))              
             when rec.rowno = 9 then
                   substr(a,(instr(a,chr(10),1,4)+1),instr(a,chr(10),1,5))
             when rec.rowno = 11 then
                   substr(a,(instr(a,chr(10),1,5)+1),instr(a,chr(10),1,6))
             when rec.rowno = 13 then
                   substr(a,(instr(a,chr(10),1,6)+1))                                            
           end name1,
           null signature,
           null "DATE"
      from test, (select rownum rowno from dual connect by level <= 14) rec;Edited by: neel_s on Dec 31, 2009 1:07 PM

  • Insert a blank line between records

    Hi,
    I am creating a sqlplus report and want to insert a blank line or some seperator to seperate the records between the start and end points of the loop to make it more readable.
    ex : The output currently look like this.
    ColumnA       ColumnB
    1                  2
    2                  3
    3                  1
    4                  5
    5                  6
    6                  4I want the output to look like this
    ColumnA       ColumnB
    1                  2
    2                  3
    3                  1
    4                  5
    5                  6
    6                  4Thanks for the help in advance!

    Hi,
    You probably work with this table every day, and you probably struggled with this particular query for a while before posting a question, so you're very familiar with the table, the data, and the application.
    Perhaps no one else in the world is in that position. Don't assume we know what your data is, or where it came from.
    Are you getting the data from a query like this?
    SELECT     columna
    ,     columnb
    FROM     table_x
    START WITH          columna     IN (1, 4)
    CONNECT BY NOCYCLE     columna     = PRIOR (columnb)
    ;If so, that's the kind of thing you should say clearly in your first message, rather than hint at in your third.
    As Ow said, you should manufacture a column for use in the BREAK command, and use COLUMN ... NOPRINT if you don't want to see it in the results?
    The question here is, what is an appropriate column? CONNECT_BY_ROOT seems to work perfectly for your example
    BREAK     ON my_break_column     SKIP 1
    COLUMN     my_break_column     NOPRINT
    SELECT     columna
    ,     columnb
    ,     CONNECT_BY_ROOT     columna     AS my_break_column
    FROM     table_x
    START WITH          columna     IN (1, 4)
    CONNECT BY NOCYCLE     columna     = PRIOR (columnb)
    ;The rest of this message is an merely a tangent. I find it interesting, but feel free to skip it.
    You might think CONNECT_BY_ISCYCLE was an obvious choice for a BREAK oclumn: you want to skip a line after every output row where CONNECT_BY_ISCYCLE = 1.
    Unfortunately, BREAK always works when a column value changes. That is, you can't tell it "Please skip one line after rows where columnz = 1"; all you can say is "Please skip a row before rows where columnz is different than it was on the previous row". (At least that's what I think: I would love it if someone proved me wrong!)
    So we have to manufacture some column that keeps its value for an entire loop. The SUM of CONNECT_BY_ISCYCLE (in DESCending order, as returned by the CONNECT BY query) would work. Analytic ORDER BY clauses seem to destroy the order imposed by CONNECT BY, so you'd have to do the CONNECT BY in a sub-query, capture the ROWNUM to preserve the order, and use the analytic SUM function in the main query:
    WITH     oq     AS
         SELECT     columna
         ,     columnb
         ,     ROWNUM               AS r_num
         ,     CONNECT_BY_ISCYCLE     AS cycle_val
         FROM     table_x
         START WITH          columna     IN (1, 4)
         CONNECT BY NOCYCLE     columna     = PRIOR (columnb)
    SELECT     columna
    ,     columnb
    ,     root
    ,     SUM (cycle_val) OVER (ORDER BY ROWNUM DESC)
    --               AS my_break_column
    FROM     oq
    ORDER BY     r_num
    ;The only reason for actually doing this is to learn about CONNECT BY queries. CONNECT_BY_ROOT, as shown above, works much better for your requirements.

  • Aligning lines between pages in InDesign CS5

    Hi all,
    After many  fruitless hours of Googling, I'm really, really hoping to find some help  here with a small InDesign CS5 issue I'm having. I'll try and keep this  brief.
    I'm currently designing a book in InDesign CS5  that has chapters that run one after the other. Whereas in most books a  new chapter will start on a new page, here they flow together. For each  chapter heading, I'm using a font called Orial, size 18. For the main  text, I'm using Adobe Garamond Pro, size 12. When I have two solid pages  of 12 point Adobe Garamond Pro, all is well. The alignment of lines on  both pages are level with one another. That's just what I want.
    However,  if I have a double page spread and one of the pages has an 18pt Orial  title on it (within all the 12pt Adobe Garamond Pro), this throws things  out of whack, as you can see in the image below:
    As you can see, the lines on page 79 are not level with those on page 78. Is there any way around this?
    Many, many thanks for any help you can offer. I'm rather tearing my hair out here!

    Hm, I'm afraid I'm still encountering problems here. I'll talk through what I've done so far using Josh's excellent guide:
    (I should note at the start that my text frames are all linked to one another, and I am using paragraph styles).
    Firstly, I checked 'Grids in Back' was switched off (thanks ghf232):
    Secondly, I turned on the following:
    View -> Screen Mode -> Normal
    View -> Extras -> Show Frame Edges
    View -> Grids -> Show Baseline Grid
    My document now looked like this:
    Then I highlighted all text with Ctrl+A:
    And next I hit the 'Align to baseline grid' button:
    This resulted in the following:
    Next, I went to Preferences -> Grids and changed 'Increment Every' option to 1.5:
    Alas, the lines remained uneven:
    I'm sure I'm missing something really obvious. If anybody couldhelp, I'd be hugely grateful. Thanks again all.

  • Blank/pause between pages on IE, but not Firefox

    Why does IE have 1/2 -1 second pauses or 'white' blank pages
    when you click between links, but Firefox is seamless (which looks
    way better). When it's in teh cache it's OK, but FF is Ok from the
    start.
    Any idea???
    Thx
    Dean

    Guessing here but Google for "FOUC"
    (flash of unstyled content)
    A link might help
    "Deansplit" <[email protected]> wrote in
    message
    news:et4hhk$pu4$[email protected]..
    > Why does IE have 1/2 -1 second pauses or 'white' blank
    pages when you
    > click
    > between links, but Firefox is seamless (which looks way
    better). When it's
    > in
    > teh cache it's OK, but FF is Ok from the start.
    >
    > Any idea???
    >
    > Thx
    >
    > Dean
    >

  • Blank lines between [ pre ] tags are now being removed

    Using [ pre ]
    SQL> select 'where has the space gone' from dual;
    'WHEREHASTHESPACEGONE'
    where has the space gone
    Elapsed: 00:00:00.60Using [ code ]
    SQL> select 'where has the space gone' from dual;
    'WHEREHASTHESPACEGONE'
    where has the space gone
    Elapsed: 00:00:00.60Unfortunetley [ code ] does not recognize internal [ b ] tags for bold
    Can this be fixed?
    Message was edited by:
    3360
    Sorry, forget it. I had to use IE instead of Firefox a couple of weeks back and it is just the browser, I checked and the posts look fine in Firefox.
    Message was edited by:
    3360
    Message was edited by:
    3360

    2 years later, is it possible to get a fix regarding this inconvenient for the IE users ?
    Or does Firefox usage became mandatory to read properly the code ?
    Nicolas.

  • Page break(blank line) in a output list

    Hi,
    I want to display the equipment numbers (it_equi) in the ouput list. IT_EQUI is having thousands lines, its going to multiple pages (but blank line is inserted between the pages).
    But I dont want the blank lines between the pages.
    Can you please let me know how I can avoid the blank lines between the pages.
    Its quite urgent,please help me at the earliest.
    Thanks & Regards,
    Janardhan

    Hi Manoj,
    Thanks for your valuable reply.
    But for my specific rquirement, it should not be continuous page.
    My requirement is,
    For every functional location I need to display the equipments. For every new functional location it should start in a new page.
    please let me know the correct solution.
    Regards,
    Jana

  • I am trying to display three lines of text but blank lines are being inserted between them.

    I have a section on the right side of my homepage for upcoming events.  It was displaying fine until I changed the data and now the three lines are displaying blank lines between each one. 
    Here is the code.
    <h2 class="meeting"> </h2>
          <h2 class="meeting"><a href="http://www.astm.org/MEETINGS/filtrexx40.cgi?+-P+TERM+D02+searchresults.frm">ASTM D02 2014</a></h2>
       <img class="news-image" src="images/news/Sheraton San Diego.jpg" width="100" height="61" /> 
       <p class="news-text">December 7-11, 2014</p>
          <p>Sheraton San Diego Hotel and Marina</p>
          <p>San Diego, CA</p>
      </div>
    ASTM D02 2014
    December 7-11, 2014
    Sheraton San Diego Hotel and Marina
    San Diego, CA
    The picture is displaying to the right but I want to get rid of the blank lines between the text. I am using Dreamweaver CS5 Version 11.0 Please help.

    Sorry I inserted the wrong code. 
    <div id="rightsideUpcomingevents">
       <h2 class="upcoming">Upcoming Events</h2>
          <h2 class="meeting"><a href="http://www.gulfcoastconference.com">Gulf Coast Conference</a></h2>
       <img class="news-image" src="images/news/hotel_moody.jpg" width="100" height="61" /> 
       <p class="news-text">October 14-15, 2014</p>
          <p class="news-text">Moody Gardens Convention Center</p>
          <p class="news-text">Galveston, TX</p>
          <h2 class="meeting"> </h2>
          <h2 class="meeting"><a href="http://www.astm.org/MEETINGS/filtrexx40.cgi?+-P+TERM+D02+searchresults.frm">ASTM D02 2014</a></h2>
       <img class="news-image" src="images/news/Sheraton San Diego.jpg" width="100" height="61" /> 
       <p class="news-text">December 7-11, 2014</p>
          <p class="news-text">Sheraton San Diego Hotel and Marina</p>
          <p class="news-text">San Diego, CA</p>
      </div>
    .rightside-text
    {padding:0px; color:#172B61;}
    .news-image {float:right; margin-right:10px; }
    .news-text { padding:0px; color:#000;}

  • Small square boxes appearing on blank lines (UPDATED) - The question is, how to get rid of them?

    *******  As to my display name "All I tried were in use" - when I registered at the Adobe site to use the Browser Lab, I tried something like 10 or 12 user names and finally gave up and went with "All I tried were in use" - my name is Bob
    ------------------------------- UPDATE --------------------
    The problem, small square boxes showing on lines in Freetext Tool comments, is not limited to blank lines, as I originally reported here. These boxes are showing up at the end of every line. It does not matter if the line break is hard or soft, whether the line is empty or not.
    Please read the original post bearing mind that the  problem is occurring at the end of all lines.
    Also - here is a screen capture of a part of one comment box, showing the square lines. I didn't show the entire box because the material above the area I'm showing is a tad private or confidential. Here is the image showing the boxes - note that there is no box at the end of the last line in the comment.
    -------- Original Post ------------
    We have a copy of Acrobat 5.0. and up until now it has done what we need, which is not much more than adding bookmarks, links, and some touch up. I know it is very old and I know things change. I'm hoping this has nothing to do with the release we are using. I would think this would be a backward compatibility issue if it is a problem with newer Reader versions dealing with PDFs "edited" with 5.0.
    I am having small square boxes showing up on blank lines. (read my update above  - the boxes are at the end of all lines, soft break or hard break))
    I'm a programmer (37+ years in most all aspects of Data Processing) and I decided to learn the PHP programming "language" to add some server side processing to some of my web sites. So, I found a fairly good manual on PHP in PDF form and have been using it.
    I quickly found that the PDF didn't have a single link in it and no bookmarks, so I've been adding them as I look up a particular subject. I'm also adding comments and notes to document things not in the original manual or to add comments that would help other programmers` (who know  other languages) to adjust to PHPs' way of thinking - for example: in all the other languages I know (perhaps two dozen) to get rid of a file, you "delete" it. In PHP you "unlink" it.
    I've added a lot of comments and notes like that and when I view the PDF in Reader (on this computer I have 9.4.2) I'm seeing small square boxes on empty lines. The lines were created when I pressed Enter twice to insert a blank line between paragraphs. (again, read the update at the top of this message - the boxes are at the end of all lines, soft break or hard break)
    How can I get rid of them?
    They are not present when I've got the PDF open with Acrobat, only when I'm using an Acrobat Reader.
    They are also not present if I look at the comments using the Comments navigation panel - that is, they still show on the page, but they don't show in the copy of the comment displayed in the navigation panel.
    They are not present in Notes or when I use one of the shape tools (Square Tool, Circle Tool, or Line Tool) to create notes. They are only present in Freetext Tool comments
    They are clearly being show where there are successive line feed/carriage return characters - but how do I get rid of them?
    I JUST THOUGHT OF SOMETHING - I realized that I'd not printed any of the pages on which I have placed comments and wondered if the boxes show when printing the PDF with Reader -- they do. They are not present if I use Acrobat, not a Reader, to print the same page.
    Any assistance you can provide will be greatly appreciated.
    Please don't tell me to get a newer version - an expenditure like that is simply and totally out of the picture. For us, this is a Depression, not a Recession - we are self-employed and our businesses have been severely hammered since 2006 - we are down to about 1/4 of our income before the big guys trashed the economy.
    Bob
    P.S. Do you know that you can have a heart attack without chest pain, shortness of breath, or left arm  pain? Well, you can! I've had two and the first one nearly killed me because I had no clue it was a heart attack. You can read about it first one here.  Pass this on, it could save a life.
    My second heart attack occurred on October 4, 20112 - it began, around 3:15 AM, as the first one did, with a headache. It turned out the stent implanted in 2002 had been completely clogged by too much tissue grown. The doctor put another stent inside the first one.

    Problem Resolved - it is a font issue. Apparently Acrobat can't handle particular fonts and it is best to stick with a very small slection of fonts - Arial, Helvetica, Times Roman.
    I haven't test a lot of fonts. If I do, I'll post there results here.
    Bob

  • How can I remove the preceding blank lines in the downloaded text file?

    I have created a jsp that writes to a file and then prompts a dialog box to have an option to view or save the file. However when i view the file, there are blank lines before the actual content of the file. How can i remove these lines?
    Below is part of my code:
         response.setContentType("application/x-download");
         response.setHeader("Content-Disposition","attachment; filename=\""+ fileName + "\"");

    Hi,
    Those blank lines are normally because of the scriptlet code at the start of your jsp page.
    Remove any new lines between page directives or any include directives that you have at the top of your page.
    Look at the generated servlet code to see what exactly is causing the newline to be inserted (look for out.println("\n");)

Maybe you are looking for

  • Does anyone know when Verizon FiOS will be done at Pelham Pkwy South, 10462?

    Thanks!

  • Bluetooth modem

    I've heard that for some reason there is no bluetooth modem script for the iPhone. I need a phone that I can use as a bluetooth modem to connect my mac to the internet. I know LG generally doesn't have good Mac support. Does anyone know of specific b

  • XI scenario configuration?

    We have a fairly complex XI configuration scenario that I would like to make a renamed copy of. For example, we have a configuration scenario called "TENANT001_SCENARIO" It contains a Business Service called "TENANT001" with 30+ communication channel

  • No title displayed on search engines

    After a website analysis of my site WWW.gingerbirdstore.com, I found out that my site does not display a title on search engines. How can I add a tittle? I'm using iWeb SEO Tool and goDaddy for all the other stuff such as meta tags, description and t

  • Lost export option - Macromedia flv

    okay. I have been up all night so please excuse tired man's question. I usually export FCP to FLV by going to ; file/export/quicktime conversion and select "macromedia flv as the option. The option has disappeared. This happened after the last update