Odd And Even

Please support our Java advertiser: Programming Forums - DaniWeb Sister Site
Reply

Join Date: Jun 2004
Posts: 609
Reputation: freesoft_2000 is an unknown quantity at this point 
Solved Threads: 8
freesoft_2000 freesoft_2000 is offline Offline
Practically a Master Poster

Odd And Even

 
1
  #1
Oct 27th, 2004
Hi everyone,

I am doing a simple program with some text in the jtextpane and the text inside the jtextpane span to about three standard A4 papers. What i want to do is to only be able print even and odd pages. I am using currently the java printable interface in which i must overide the print method which has the following declaration

public int print(Graphics pg, PageFormat pageFormat, int pageIndex)
{
}

I Know that printing even or odd pages does not involve the graphics or the pageformat objects.

The pageindex object is the one i am concerned about.

The thing is i do not know how to test as to whether the pageindex is an even or odd number (including 0 which is an odd number)

Can anyone show me any codings or explain to me in detail how to test for even or odd numbers.

Thank You

Yours Sincerely

Richard West
Reply With Quote Quick reply to this message  
Join Date: Sep 2004
Posts: 7,813
Reputation: Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute Narue has a reputation beyond repute 
Solved Threads: 747
Team Colleague
Narue's Avatar
Narue Narue is offline Offline
Senior Bitch

Re: Odd And Even

 
0
  #2
Oct 27th, 2004
  1. if ( pageIndex % 2 == 0 ) {
  2. // Even
  3. }
  4. else {
  5. // Odd
  6. }
New members chased away this month: 3
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



Tag cloud for Java
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC