Need help returning largest of three numbers....

Hello,
I'm stuck in an essential part of a program. The objective of the program is suppose to call a static method that will find and return the largest of three numbers. Im suppose to test the program with the following three sets of three numbers: (2, 5, 8), (2, 10, 5), (67, 23, 17).
After lots of thinking, I decided to write a program that will do exactly what the objective requires, but without calling a static method that will find and return. I tried calling a static method but it's real confusing and I couldnt do it right.
Below is my program, the top part is right I think, but calling a static method and returning the value is the part Im having trouble in.
// The "LargeNum3" class.
import java.awt.*;
import hsa.Console;
public class LargeNum3
    static Console c;           // The output console
    public static void main (String [] args)
        c = new Console ();
        int num [] = new int [3];
        int largest;
        largest = num [0];
        for (int i = 0 ; i < 3 ; i++)
            c.println ("Please enter in 3 values");
            for (int a = 0 ; a < 3 ; a++)
                num [a] = c.readInt ();
            for (int b = 0 ; b < num.length ; b++)
                if (num > largest)
largest = num [b];
c.println ();
c.println ("The largest number is " + largest);
c.println ();
} // LargeNum3 class

// The "LargeNum3" class.
import java.awt.*;
import hsa.Console;
public class LargeNum3
    static Console c;           // The output console
    // Declare a new static method to return the
    // largest number in the array passed to it
    public static int findLargest(int[] nums)
        int j, largest=nums[0];
        for (j=1; j<nums.length; j++)
            if (nums[j]>largest) largest=nums[j];
        return largest;
    public static void main (String [] args)
        c = new Console ();
        int num [] = new int [3];
        // int largest;
        // largest = num [0]; It was wrong to put this here in
        // in the first place
        for (int i = 0 ; i < 3 ; i++)
            c.println ("Please enter in 3 values");
            for (int a = 0 ; a < 3 ; a++)
                num [a] = c.readInt ();
            c.println ();
            c.println ("The largest number is " + findLargest(num));
            c.println ();
} // LargeNum3 class

Similar Messages

  • Need help returning correct name from a code created movie clip

    Hello. I am an AS3 n00b with hopefuly a simple question I am designing a simple game in flash. This code creates an array of movie clips and asigns a picture to each one. It is a map screen. What I need is when I click on one of the created movie clips, I need it to return either the index of the clip in the array or the name of the clip. Basicaly anything I can use to tell them apart in the code. Here is the code:
    import flash.display.MovieClip;
    var MapLoader:Array = new Array();
    var strJPGext:String = ".jpg";
    var intContTileNumber:int;
    var strContTilePath:String;
    var intDistStartX:int = 63;
    var intDistStartY:int = 64;
    var intDistMultiplyY:int = 0;
    var intDistMultiplyX:int = 0;
    var intDistCount:int = 0;
    var MapSquare:Array = new Array();
    for (var i:int = 0; i < 729; i++)
             //var MapSquare:MovieClip = new MovieClip();
            MapSquare.push (new MovieClip());
            MapSquare[i].x = intDistStartX + (intDistMultiplyX * 30);
            MapSquare[i].y = intDistStartY + (intDistMultiplyY * 30);
            MapSquare[i].name = "MapSquare" + i ;
            addChild(MapSquare[i]);
            intContTileNumber = i;
            MapLoader.push (new Loader);
            strContTilePath = intContTileNumber + strJPGext;
            MapLoader[i].load(new URLRequest(strContTilePath));
            MapSquare[i].addChild(MapLoader[i]);
            intDistCount++;
            intDistMultiplyX++;
            if (intDistCount > 26){
            intDistCount = 0;
            intDistMultiplyX = 0;
            intDistMultiplyY++;
    stage.addEventListener(MouseEvent.CLICK, reportClick);
    function reportClick(event:MouseEvent):void
        trace("movieClip Instance Name = " + event.target.name);   
    Now all this works fine, it creates the map and assigns the correct picture and places them in the correct X,Y position and it is the correct grid of 27x27 squares. The problem is with the name, when I click on the movie clip, it returns "Instance2" or "Instance5" or whatever. It starts with 2 and then increases each number by 3 for each clip, so the first one is 2, then 5 then 8 and so on. This is no good. I need it to return the name that I assigned it
    . If I put the code in trace(MapSquare[1]) it will return the name "MapSquare1" so I know the name was assigned, but it isnt returning.
    Please assist
    Thanks,
    -red

    Thanks for the resopnse,
    I know I dont really need the name, I just need the index number of the array, but I cant figure out how to get the index name without specificaly coding for it. That is why in the listener event I use event.target.name because I dont know what movie clip is being clicked until it has been clicked on. Basically when a movie clip is clicked it needs to return which index of the array was clicked.
    I could do it this way:
    MapSquare[0].addEventListener(
      MouseEvent.MOUSE_UP,
      function(evt:MouseEvent):void {
        trace("I've been clicked!");
    MapSquare[1].addEventListener(
       MouseEvent.MOUSE_UP,
       function(evt:MouseEvent):void {
         trace("I've been clicked!");
    MapSquare[2].addEventListener(
       MouseEvent.MOUSE_UP,
       function(evt:MouseEvent):void {
         trace("I've been clicked!");
    ... ect
    but that is unreasonable and it kind of defeats the purpose of having the array in the first place. The code that each movie clip executes is the same, eventualy that index will be passed into a database and the data at that primary key will be retrieved and returned to the program. So I just need to know, when one of those buttons is clicked, which one was clicked and what is its index in the array.
    I am a VB programer and in VB this is very easy, the control array automatically sends its own index into the function when one of the buttons is clicked. It seems simple enough, I just dont know how to do it in action script.
    Thanks again,
    -red

  • Need help returning (not printing) avg GPA from array??

    Here's what I have so far. After returning the value then I gotta print the avg in a separate method. I also need to check the names of the first and last student using an "equals" method. Please someone help with whatever you can. Here's what I got:
    import java.util.Scanner;
    public class StudentLists {
    //Main method. Prompts user for the number of students.
       public static void main(String[] args) {
       Scanner in = new Scanner(System.in);
       System.out.print("Please enter the number of students in this class: ");
       int s = in.nextInt();
       Student[] students=new Student[s];
       FillStudents(s,students);
       printAll(students);
       public static void FillStudents(int s, Student[] students){
       for (int i=0; i<s; i++)
            Scanner inf = new Scanner(System.in);
            System.out.println("Please enter student's first name: ");
        String first = inf.nextLine();
        System.out.println("Please enter student's last name: ");
            String last=inf.nextLine();
            System.out.println("Please enter the number of credits completed: ");
            int c=inf.nextInt();
            System.out.println("Please enter student's GPA: ");
            Double g=inf.nextDouble();
            students[i] = new Student(first, last, c, g);
        public static void printAll(Student[] students) {
        System.out.println("Names      Credits  GPA");
           for(int i = 0; i < students.length; i++)
        System.out.println(students);
    public static Double getAvg(Student[] students, Double g){
    double sum=0.0;
    double avg=0.0;
    for(int i=0; i<students.length; i++){
    sum+=g;
    avg=sum/students.length;
    return avg;

    Oh no I wasn't giving any orders. I was saying I have been trying to edit what I have, but I can't figure out how to get the method right to do my average of the GPA from the loop. I don't know what to put in there. I was just asking if you would write it and then kind of explain what u did for me please.
    import java.util.Scanner;
    public class StudentLists {
    //Main method. Prompts user for the number of students.
       public static void main(String[] args) {
       Scanner in = new Scanner(System.in);
       System.out.print("Please enter the number of students in this class: ");
       int s = in.nextInt();
       Student[] students=new Student[s];
       FillStudents(s,students);
       printAll(students);
       public static void FillStudents(int s, Student[] students){
       for (int i=0; i<s; i++)
            Scanner inf = new Scanner(System.in);
            System.out.println("Please enter student's first name: ");
        String first = inf.nextLine();
        System.out.println("Please enter student's last name: ");
            String last=inf.nextLine();
            System.out.println("Please enter the number of credits completed: ");
            int c=inf.nextInt();
            System.out.println("Please enter student's GPA: ");
            Double g=inf.nextDouble();
            students[i] = new Student(first, last, c, g);
        public static void printAll(Student[] students) {
        System.out.println("Names      Credits  GPA");
           for(int i = 0; i < students.length; i++)
        System.out.println(students);
    public static Double getAvg(Student[] students){
    double sum=0.0;
    double avg=0.0;
    for(int i=0; i<students.length; i++){
    avg=sum/students.length;
    System.out.println(avg);
    return avg;

  • Very new user needs help setting up a three user network plus server

    Hi,
    I'm an owner/manager of a recruitment company in the UK and we use three mac minis in our office to run our recruitment software (on a filemaker database) internet, mail and MS Office 2008.
    We currently use one of the mini's as a 'server' in so much that it has a external HDD attached and shared across the network. We use Airport Extreme to share the internet.
    Although to begin with this set up has served us well the amount of data travelling across the network and the prospect of a couple of new employees starting has made me think it's time to invest in a network and server of some description.
    With my very limited knowledge i'm proposing the following but would greatly appreciate some assistance from the forum users!
    Install OSX 10.5.3 Server on one of the Mac Minis
    Get an ethernet switch and cable the three minis together
    Use the external HDD as a time machine backup and store all files on the 'server' HDD
    Continue to use the Airport Extreme to share the internet over airport.
    I have a couple of questions:
    Can the Server computer still be used as a desktop or do we need to buy a new mini
    Does this set up make the airport base station redundant
    As we grow I would envisage enlisting the help of a specialist Mac IT support company but in the mean time any help would be greatly appreciated.
    Thank you again in advance.

    I would get something better specified than a mini to be my Mac OS X based server, and although you can run it as a desktop I wouldnt advise it.
    You ought to go out and buy the book Mac OS X Server 10.5 Essentials - The only Apple-certified book on Mac OS X Server - which Ive found to be a godsend of a book in getting Leopard Server going. Make sure you get the 10.5 version. Im in the UK and got it from Foyles in London.
    Your approach is fine, but Leopard Server isnt as plug and go as the rest of Apples products. In particular it just doesnt function correctly if you do not have working DNS before you start. Period. If you dont understand DNS in your office or If having read the book you find its too technical you might be better off buying a no-brand Network File Store/Disk or even a Time Capsule from Apple if its mainly shared disk space that you need.
    Angus

  • Need help returning processor task list.

    I'm new to KEXT/Kernel programming and Xcode, so I'm sure these are fairly beginner questions, but I'm having some trouble.  I'm trying to return a list of processor tasks, so I can test different things such as process id's, file descriptors, etc.
    I'm not sure what functions would be useful for me.  Is there some way that I would be able to return a list of all running processor tasks and/or their information?  Would someone be able to point me in the right direction?

    Yeah, usually it helps me out quite a bit, but I've been googling for over a week, and I get a whole lot of nothing.  Everything that I've actually been able to find uses outdated headers and functions that don't exist anymore.  Maybe my google skills just aren't very good for this area, since I *am* new to this after all...
    I figured it would be much more time-efficient to just ask the dev community.  Any insight would be appreciated.

  • Need help returning only 1min

    I'm working on a custom Discrete Job Picklist and am trying to return the locator with the least amount of the item that is required to pick. This is working fine except when the minimum is not distinct.
    Here's the bit of code that I'm working with:
    and d.total_qoh = (select min(f.total_qoh)
    from apps.mtl_onhand_locator_v f
    where d.item = f.item)
    This returns the mins but give me duplicates when the mins are the same. I'd like to return only 1 min locator per item. I've tried using a select distinct, but this does not work.
    Ideally, I'd like to use the min(locator_id) to determine which locator to use should the min(total_qoh) be non-distinct.
    I've tried using:
    and d.total_qoh = (select *(select min(f.total_qoh)
    from apps.mtl_onhand_locator_v f
    where d.item = f.item
    order by d.locator_id)
    where rownum = 1)
    But I don't think that order by is allowed in 8.1.6.1 and so it is not working. Likewise, I can't seem to get TOP N to work.
    Any suggestions?
    -Tracy
    Here's the full sql:
    select b.wip_entity_name "Job #",
           d.padded_concatenated_segments "Item",
           d.item_description "Description",
           c.REQUIRED_QUANTITY "Qty",
           e.segment1 "Row",e.segment2 "Section", e.segment3 "Shelf", e.segment4 "Bin",
           d.total_qoh "Qty at Loc",
           d.locator_id
    from wip.wip_discrete_jobs a, wip.wip_entities b, wip.wip_requirement_operations c, apps.mtl_onhand_locator_v d,  inv.mtl_item_locations e
    where a.wip_entity_id = b.wip_entity_id
    and   a.wip_entity_id = c.wip_entity_id
    and   c.inventory_item_id =  d.inventory_item_id
    and   d.locator_id = e.inventory_location_id
    and   d.ORGANIZATION_ID = '5'
    and   b.wip_entity_name >= '70319'--:job_low
    and   b.wip_entity_name <= '70320'--:job_high
    and   e.segment1 is not null
    and   a.status_type in  ('3', '1') --released and unreleased jobs
    and   d.total_qoh = (select min(f.total_qoh)
                        from apps.mtl_onhand_locator_v f
                        where d.padded_concatenated_segments = f.padded_concatenated_segments)
    order by b.wip_entity_name, e.segment1, e.segment2, e.segment3, e.segment4; Thanks for any help you can offer.
    -Tracy

    Richard - this is yielding ora-00904: invalid column. Although I have verified that the column names are correct. I think this may have something to do with not allowing an order by in a subquery for 8.1.6.1 but am not positive. It seems that I either get an invalid column name or missing right parenthesis when using order by in the subquery.
    and d.locator_id = (select locator_id
                           from (select locator_id
                                    from apps.mtl_onhand_locator_v
                                    where d.padded_concatenated_segments = f.padded_concatenated_segments
                                    order by total_qoh desc, locator_id desc)
                           where rownum = 1)
    -Tracy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Advanced Excel user needing help running VBA program in Numbers 09

    I am preparing for Dental school, a very tough program, indeed, and wanted to use a powerful tool that helped me out in my undergrad:
    I have developed a Visual Basic program in Excel which gives the user a few simple forms through which I can enter data (terms and definitions, or possible test information) and then take short tests, play a silly game, print flash cards and so on.
    I worked very hard to get this going on Office 2007 - very VERY hard given Office 07 is the most evil creation ever!!
    I may resort to running gulp Vista to get this running, but what a pain! I am aware that Applescript is an option, but would hope there is some compatibility with my previous work. The more code I can preserve from my previous program the less time I will have to invest in developing the Mac version.
    This is a highly advanced thing to do, and I realize most people don't do this sort of thing. If anyone is as crazy (and geeky) as me your help would be much appreciated. Thanks in advance!

    Where are you finding Applescript 3.2.1 ?
    As far as I know, the current AppleScript is 2.1.2 and is part of mac Os X 10.6.
    Office for mac is unable to use VBA.
    Numbers is unable to take benefit of this missing VBA.
    AppleScript may be used to mimic some VBA features.
    Look at :
    http://mactech.com/vba-transition-guide/index-091.html
    In fact, I guess that you grabbed Xcode 3.2.1 hoping to be able to build AppleScript applications.
    This require a serious learning curve.
    Look at :
    http://developer.apple.com/Mac/library/releasenotes/ScriptingAutomation/RN-Apple ScriptObjC/index.html
    Yvan KOENIG (VALLAURIS, France) lundi 5 avril 2010 08:01:27

  • Need help returning an Int!!!

    here is the code for my sport quiz class:
    import javax.swing.*;
    public class Sport
         public static int main (String []args)
    Object[] sportValues = { "Freddie", "jimbo", "the destroyer" };
    Object sportq1;
    Object[] sportValues2 = { "David Beckham", "Alessandro Del Piero",
    "Michael Ballack" };
    Object sportq2;
    Object[] sportValues3 = { "6", "10", "14" };
    Object sportq3;
    int sportScore = 0;
    String message;
    //............QUESTION 1..............
    sportq1 = JOptionPane.showInputDialog(null, "Question 1: What nickname is given to england cricketer andrew flintoff?", "selection", JOptionPane.YES_NO_CANCEL_OPTION, null,
    sportValues, sportValues[0]);
    if (sportq1.equals(sportValues[0]))
    message = "CORRECT!";
    JOptionPane.showMessageDialog(null, message);
    sportScore = (sportScore+1);
         else
         message = "WRONG!";
         JOptionPane.showMessageDialog(null, message);
         //............QUESTION 2.............
    sportq2 = JOptionPane.showInputDialog(null, "Question 2: Who scored italy's second goal in the world cup final?", "selection", JOptionPane.YES_NO_CANCEL_OPTION, null,
    sportValues2, sportValues2[0]);
    if (sportq2.equals(sportValues2[1]))
    message = "CORRECT!";
    JOptionPane.showMessageDialog(null, message);
    sportScore = (sportScore+1);
         else
         message = "WRONG!";
         JOptionPane.showMessageDialog(null, message);
         //............QUESTION 3.............
    sportq3 = JOptionPane.showInputDialog(null, "Question 3: how many players are there in an ice hockey team?", "selection", JOptionPane.YES_NO_CANCEL_OPTION, null,
    sportValues3, sportValues3[0]);
    if (sportq3.equals(sportValues3[0]))
    message = "CORRECT!";
    JOptionPane.showMessageDialog(null, message);
    sportScore = (sportScore+1);
         else
         message = "WRONG!";
         JOptionPane.showMessageDialog(null, message);
         return sportScore;
    i am trying to return the 'sportScore' int to a main quiz class but for some reason it hasnt worked...
    can anyone tell me what i have done wrong?
    thanks alot!

    this is my main quiz class:
    import javax.swing.*;
    public class Quiz
         public static void main (String []args)
             Object[] possibleValues = { "Sport", "Music", "General Knowledge", "TV and Film", "Display Score Board" };
             Object choice;
             do
          choice = JOptionPane.showInputDialog(null,"Welcome to my quiz\nPlease select you category:", "selection", JOptionPane.YES_NO_CANCEL_OPTION, null,
          possibleValues, possibleValues[0]);
          if  (choice.equals(JOptionPane.CANCEL_OPTION))
        System.exit(0);
        if (choice.equals(possibleValues[0]))
            Sport.doQuiz();
         if (choice.equals(possibleValues[1]))
            Music.doQuiz();
         if (choice.equals(possibleValues[2]))
            General.doQuiz();
        if (choice.equals(possibleValues[3]))
            TV.doQuiz();
        if (choice.equals(possibleValues[4]))
            int sportScore = Sport.doQuiz();
            int tvScore = TV.doQuiz();
            int musicScore = Music.doQuiz();
            int generalScore = General.doQuiz();
            int totalScore = (sportScore+tvScore+musicScore+generalScore);
            JOptionPane.showMessageDialog(null,"Thankyou for taking my quiz!\nhere are your results:\nSport: "
            + sportScore + "/3\nMusic: " + musicScore + "/3\nGeneral Knowledge: "
            + generalScore + "/3\nTV and Film: " + tvScore +"/3\n\nTOTAL: "
            + totalScore + "/12!");
        while(!(choice.equals(possibleValues[4])));
        }as you can see i have more than just the sport category but once i know how to do that one i will be able to do the rest...
    now here is my sport class:
    import javax.swing.*;
    public class Sport
           public static int doQuiz()
              Object[] sportValues = { "Freddie", "jimbo", "the destroyer" };
                Object sportq1;
              Object[] sportValues2 = { "David Beckham", "Alessandro Del Piero",
    "Michael Ballack" };
                Object sportq2;
              Object[] sportValues3 = { "6", "10", "14" };
                Object sportq3;
                int sportScore = 0;
                String message;
         //............QUESTION 1..............
                sportq1 = JOptionPane.showInputDialog(null, "Question 1: What nickname is given to england cricketer andrew flintoff?", "selection", JOptionPane.YES_NO_CANCEL_OPTION, null,
                sportValues, sportValues[0]);
                if (sportq1.equals(sportValues[0]))
                  message = "CORRECT!";
            JOptionPane.showMessageDialog(null, message);
            sportScore = (sportScore+1);
             else
                 message = "WRONG!";
              JOptionPane.showMessageDialog(null, message);
             //............QUESTION 2.............
                sportq2 = JOptionPane.showInputDialog(null, "Question 2: Who scored italy's second goal in the world cup final?", "selection", JOptionPane.YES_NO_CANCEL_OPTION, null,
                sportValues2, sportValues2[0]);
                if (sportq2.equals(sportValues2[1]))
                  message = "CORRECT!";
            JOptionPane.showMessageDialog(null, message);
              sportScore = (sportScore+1);
             else
             message = "WRONG!";
             JOptionPane.showMessageDialog(null, message);
             //............QUESTION 3.............
                sportq3 = JOptionPane.showInputDialog(null, "Question 3: how many players are there in an ice hockey team?", "selection", JOptionPane.YES_NO_CANCEL_OPTION, null,
                sportValues3, sportValues3[0]);
                if (sportq3.equals(sportValues3[0]))
                  message = "CORRECT!";
            JOptionPane.showMessageDialog(null, message);
              sportScore = (sportScore+1);
             else
                 message = "WRONG!";
              JOptionPane.showMessageDialog(null, message);
             return sportScore;
    }i am tring to return sportScore from the sport class to the main quiz class, at the moment instead of getting the sportScore at the end of the quiz class it is now running the whole sport class again!
    what have i done wrong?
    ta

  • Need help with Automatic Generating Form Numbers

    Hello,
    I am new to all this and have found myself stuck trying to figure out how to have my forms automatiacally generate a new number each time it is used. I tried looking through similar posts but do not understand the directions given there. If someone could help me figure this out I would really appreciate it. Thank you.

    Before opening my forms for responses I am creating a column with my starting form number - 1.  in the cell above(first response) I am setting an equation =B2 +1.  All incoming responses automatically generate an ID number within my responses table.  The form itself will not present the number, but if you were looking for an easy way to track responses w/ an ID it has worked well for me so far.

  • Need help please adding odd even numbers

    here is my code
    import java.io.*;
    public class addeven
         public static void main(String args[])throws IOException
              BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
              String n1;
              int num1;
              int r,x;
              System.out.print("Enter a number: ");
              n1=br.readLine();
              num1=Integer.parseInt(n1);
              r=num1%2;
              if (r==0)
                   System.out.println("Even number!");
              else
                   System.out.println("Odd number!");
    }my problem is how can i make a logic to add every even numbers
    example the user inputed number 10 and its even then the program will
    add every even number under number 10 and it will be 10+8+6+4+2
    then print the total how can i do that its not a homework im just selfstudy in java and im new to this language thank's

    > i think i found the loop for even but im going insane
    for odd wihs im good in looping
    import java.io.*;
    public class sumofeven
    public static void main(String args[])throws
    s IOException
    BufferedReader reader = new BufferedReader(new
    ew InputStreamReader(System.in));
              int x,sum = 0;
              System.out.print("Enter a number: ");
              x=Integer.parseInt(reader.readLine());
              for (int i=0; i<x; i=i+2)
                   sum=sum+i;
                   System.out.println(sum + "");
              }close, but yours does not check for even or odd. It would be better to do your sum by counting backward until you reach 0
    boolean even = false;
    System.out.print("Enter a number: ");
    num1=Integer.parseInt(br.readLine());
    if(num1%2 == 0) even = true;
    int orig = num1;
    while(num1 > 0)
        sum += num1;
        num1 -= 2;
    }~Tim

  • I need help with a formula for Numbers.

    I keep getting a syntax error when I type this in...
    =(B1/50)+(C1/12)-(MIN(D1, [4])+/5)
    it is a formula to calculate weight watches points. here it is as seen on a website.
    p=(c/50)+(f/12)-(min{r,4}/5)
    p=points
    c=calories
    f=fat grams
    r=dietary fiber
    I have the cells so that b1 = calories, c1 = fat grams, and d1 = dietary fiber.
    Can anyone point me in the right direction? I'm thinking its just a simple mistake that I am making. Thanks.

    toppu2020 wrote:
    =(B1/50)+(C1/12)-(MIN(D1, [4])+/5)
    the [4] item means nothing for Numbers.
    My guess is that the formula is trying to get the minimal value in the duo D1 and 4
    so you may try:
    =(B1/50)+(C1/12)-(MIN(D1,4)/5)
    Yvan KOENIG (from FRANCE lundi 28 juillet 2008 20:29:36)

  • Need Help With ePub Book Page Numbering

    I'm not understanding how to get the page numbers set in sequential order for an ePub.
    I've created a Book with 10 sections (all independent files).
    But, as you can see in the attached image, the file numbers do not progress from one "section" to another. This is messing up the TOC and the ePub navigation.
    What am I doing incorrectly?

    Book and Page Numbering Options were set correctly to:
    Continue from previous document
    Automatically Update Page & Section Numbers
    What I missed was setting Document Numbering Options to:
    Start Section >> Auto Page Numbering
    Document Chapter Numbering >> AutoChapter Numbering
    Each of my ten Book documents were defaulting to Start Page Numbering at: 1 which was causing each document/section to begin at 1.

  • Need help returning to default application icons

    ok, i began to change the icons on my iBook tonight and then decided i wanted the original ones back, when to my dismay i realized i didnt know where to look.
    Where are they?

    irishexpatriate, they are still there. "Get Info" (command-i) on the file you want to change back, then choose the small icon window and delete.
    -mj
    [email protected]

  • I need help highlighting an expiration date on my Numbers '09 spreadsheet. I want the text/fill of a cell to change color when the expiration date of an item is within 180 days of the current date.

    I need help highlighting cells on my Numbers '09 spreadsheet.  I want the cell text/fill to change color when the date is 180 days or less from the current date.  I already have a cell with the current date in it.  I also know how to change the fill/text colors.  All the cells have been formatted to show date only.  I am having trouble with the formula.  I can get to the Conditional Formatting menu and select "With Dates" but after that I am lost.  Can anyone help?
    Thank you for any assistance.
    B

    Set a Conditional Format rule as shown in the illustration below. The rule has been applied to all dates in column B of the table.
    Regards,
    Barry

  • Need help buying a logic board!!!

    Hi,
    So I posted a while back about my mac failing to boot up. Now I concluded it was the logic board that was faulty. I need help deciphering what the part numbers mean.
    My logic board part number is 630-6694/T6690 and model 820-1592-A. This came with the dual 2.0 ghz PPC970fx 90nm model (June 2004). There are boards with the same model number as mine, but different part number prefixes (i.e. 661-xxxx instead of 630-xxxx), so what does this mean????
    I would like to really get the latest motherboard that is still compatible with the processors, if that's possible? I have seen different dual socket boards like 820-1760-A, which I'm interested in since it is the Early 2005 model.
    Can anyone here with technical knowledge shed some light on what these model numbers and part numbers mean?
    Thanks!

    Hi, if it were me, I'd call one of these and see what'd work, I'm no expert but I hear G5s are really particular...
    http://www.dvwarehouse.com/Logic-Boad-for-PowerMac-G5-(Early-2005)-820-1592-A-p-35673.html
    http://www.welovemacs.com/6613584.html

Maybe you are looking for

  • How to add data to custom dropdown in E-REC BSP Application:HRRCF_REQ_MNT

    We have added a custom dropdown field in E-recruitment. The BSP application is: HRRCF_REQ_MNT. Now i need to assign values to that dropdown through HRRCF_REQ_MNT. Any suggestion where that dropdown will be defined because i dont see it in the layout

  • Select * from ....

    Hi All, I am using a VO object. And I want to execute a query something like below to get all the rows. select * from table_users where user_type = '%' Reason: I know select * from table_users will suffice. But, before I execute this query the VO alr

  • Album Artwork for Harry Potter books on CD doesn't load

    Is this artwork unavailable? If so, WHY? I loaded all my CDs to iTunes but unlike for my music albums, it did not retrieve artwork when I chose "Get Album Artwork." The album name is written exactly as it appears on iTunes Store. Danny

  • Can i use QT MouseEvents Class to move the Camera

    Hi We are streaming video using RTP to QuickTime and now we need to move the camera from the user's browser. Can we use the QTMouseEvent Class to move the Camera over the network..??? Thanks,

  • Photoshop: How to change program language from national to English?

    Hello, I've just installed photoshop from the Cloud. I reside in Poland but need an English version of the program. My version is now Polish - how do I change that? Please help asap, I don't understand a word!