Self teaching and need help please

Hi, I'm trying to teach myself Java. Trying being the operative word. I've purchased the book "Java Software Solutions" and I'm trudging my way through it. Anyway, to my question: it's a 6 parter that was an test-yourself question in the book that I'm having a lot of trouble with. It says to use a program provided by Lewis and Loftus and edit that program so that it, 1. asks the user for a file name and when the user enters that on the keyboard it finds the file, 2. read each line and place it in a string array and setup an integer count variable to keep track of the lines read so it stops at the end, 3. Create an int array (of the size given by the count determined above) and filling it with the number part of each element of the String array. Create a String array (of the size given by the count determined above) and fill it with the name part of each element of the above String array, 4. Finish the implementation of the Sorts class to include the selectionSort method for arrays of Comparable. Include the isSorted method as a static boolean method that will take either an array of int or an array of Comparable, 5. Use the Sorts class to do both insertionSort and selectionSort on both arrays and refill the arrays between sorts and test the arrays before and after sorting with the isSorted method, 6. Give output consisting of the results of testing with the isSorted method before and after each sort on each array, the array names should be given, the count should be given.
Many thanks to anyone who actually took the time to read this and many more to anyone who would help a struggling businessman trying to learn Java, if you could give me an example of this it would be much appreciated as this is the first place I've gotten stuck and could use an example to further my learning. The file that needs to be called is gcgc.dat and the Sorts program to be modified is this:
//  Sorts.java       Author: Lewis and Loftus
//  Demonstrates the selection sort and insertion sort algorithms,
//  as well as a generic object sort.
public class Sorts
   //  Sorts the specified array of integers using the selection
   //  sort algorithm.
   public static void selectionSort (int[] numbers)
      int min, temp;
      for (int index = 0; index < numbers.length-1; index++)
         min = index;
         for (int scan = index+1; scan < numbers.length; scan++)
            if (numbers[scan] < numbers[min])
               min = scan;
         // Swap the values
         temp = numbers[min];
         numbers[min] = numbers[index];
         numbers[index] = temp;
   //  Sorts the specified array of integers using the insertion
   //  sort algorithm.
   public static void insertionSort (int[] numbers)
      for (int index = 1; index < numbers.length; index++)
         int key = numbers[index];
         int position = index;
         // shift larger values to the right
         while (position > 0 && numbers[position-1] > key)
            numbers[position] = numbers[position-1];
            position--;
         numbers[position] = key;
   //  Sorts the specified array of objects using the insertion
   //  sort algorithm.
   public static void insertionSort (Comparable[] objects)
      for (int index = 1; index < objects.length; index++)
         Comparable key = objects[index];
         int position = index;
         // shift larger values to the right
         while (position > 0 && objects[position-1].compareTo(key) > 0)
            objects[position] = objects[position-1];
            position--;
         objects[position] = key;
}Again, many thanks to anyone who took the time to mull this over. Hope to hear from you soon.
-Joe Williams

Hi Joe,
Whoa. What exactly are you asking here? Not to be mean, but this is the type of question goes unanswered in the forums. It looks too much like you're trying to get someone to do your work.
My advice is, take it slow. Think about what you have read. Apply it to each step. Since you haven't given an indication of where you are in the book, I'm going to assume based on the problem that you're fairly far. I'm assuming you know how to compile and run a program, how to write a class, what inheritance is, etc.
Step 1: How do you get input from the user? Has the book covered streams yet?
Step 2: Again, do you understand what streams are and how to read from them?
Step 3: Have you read about Wrappers and parsing strings?
etc.
Generally, in the forum, the kind of questions that get good responses are fairly specific, as in:
"Hi, I tried this code:
<code snippet />
and I'm getting this error:
<error />
What could be wrong?"
If you do that, you'll find this forum a great learning aid. But really, a lot of effort has to be put in before you bring it here.
Good luck and keep learning! It will pay off.

Similar Messages

  • New to iCloud and need help please with getting it working

    I've got an iPad 2 and an iPhone 5 and have decided that it's about time to set up iCloud on my devices. I have followed the instructions on the website and in the icloud settings on both devices have switched on mail, contacts, calendars, reminders, safari, notes, photostream (my photo stream-on), documents and data, find my iphone, and icloud backup on. I have ensured that both devices have been backed up and automatic downloads on iTunes & App stores have all been switched on.
    I have not yet set up my PC for iCloud.
    My understanding is that icloud will sync new downloads and photos etc so I have just tried taking a picture on my iphone, expecting it to appear in my camera roll on my iPad and nothing has happened.
    Please can someone advise me if I am doing something wrong or how to resolve this.
    Many thanks.

    Welcome to the Apple Community.
    Photostream only syncs photos over Wi-Fi, make sure you are connected to Wi-Fi to begin with.
    Photostream only syncs when the camera app is closed, ensure it is closed.
    Photostream only syncs when the battery is above 20%, try recharging the device
    Try disabling photo stream on your device (settings > iCloud), restarting your device and then re-enabling photo stream.
    If this doesn't help you may need to reset photo stream. You can do this at icloud.com by clicking on your name in the top right corner and then the advanced settings in the pop-up dialogue box that appears.
    Note: disabling photostream and re-enabling it will result in any photos that are currently in the photostream album on your device, that are older than 30 days old, not being added back.

  • I'm new to java and need help please

    I have an assignment involves modifying a previous assignment. the code for the previous assigment is shown below.(it was required to be done as an applet this assigment can be an application or an applet) I'm trying to modify this code to read a text file (items.txt) that looks like this:
    item # description price(this line does not appear in the text file)
    001 shaving cream 400.00
    999 razors 30.00
    I need to load the item# and price from the text file into arrays(I have no clue how to use multi-dimensional arrays in java and would prefer not to)
    I need to search the arrays based on the values entered by the user (item # and quantity) calculate the total for that item then create a new text file which has each line item for that order in the form:
    item# quant price per item total(price per item*quant entered)
    also also I need to be able to display the four items listed above after each loop as well as all the previous item number and quantities they selected until they indicate they don't want to select anymore.
    I've been working on this for days and it seems like nothing I try works. My major problems are:
    1. I have no idea how to read the text file and load those 2 items into their respective arrays
    2. I can't seem to create a textfile that looks like text for the output file.
    code]
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.text.*;
    import java.util.Locale;
    public class arraySelection
    extends JApplet {
    //Initialize the applet
    private Container getContentPane=null;
    public void init() {
    String string_item, string_quantity;
    String output = "";
    String description= "";
    int counter= 0;
    int itemNumber= 0;
    double quantity = 0 ;
    double tax_rate=.07;
    double total= 0, price= 0;
    double tax, subtotal;
    double Pretotal= 0;
    double priceArray[] = {1, .5, 3.65, 0.02, 0.09};
    String descriptionArray[] = {"salt", "pepper", "paprika", "garlic", "thyme"};
    // create number format for currency in US dollar format
    NumberFormat moneyFormat = NumberFormat.getCurrencyInstance( Locale.US );
    //format to have the total with two digits precision
    DecimalFormat twoDigits = new DecimalFormat("0.00");
    //Jtextarea to display results
    JTextArea outputArea = new JTextArea ();
    // get applet's content pane
    Container container = getContentPane ();
    //attach output area to container
    container.add(outputArea);
    //set the first row of text for the output area
    output += "Invoice\nItem#\tDescription\tQuant@Price\t Line Total" + "\n";
    do //begin loop structure obtain input from user
    // obtain item number from user
    string_item = JOptionPane.showInputDialog(
    "Please enter an item number 1, 2, 3, 4, or 5:");
    //obtain quantity of each item that user enter
    string_quantity = JOptionPane.showInputDialog("Enter the quantity:");
    // convert numbers from type String to Integer or Double
    itemNumber = Integer.parseInt(string_item);
    quantity = Double.parseDouble(string_quantity);
    switch (itemNumber) {//Determine input from user to assign price and description
    case 10: // user input item =10
    price = priceArray[0];
    description = descriptionArray[0];
    break;
    case 20: // user input item =20
    price = priceArray [1];
    description = descriptionArray[1];
    break;
    case 30: //user input item =30
    price=priceArray[2];
    description = descriptionArray[2];
    break;
    case 40: //user input item =40
    price=priceArray[3];
    description = descriptionArray[3];
    break;
    case 50: //user input item =50
    price=priceArray[4];
    description = descriptionArray[4];
    break;
    default: // user input item is not on the list
    output += "Invalid value entered"+ "\n";
    price=0;
    description= "";
    //Calculates the total for each item number and stores it in subtotal
    subtotal = price * quantity;
    //display input from user
    output += itemNumber + "\t" + description + "\t\t"+ quantity + "@" +
    moneyFormat.format( price) + "\t" + moneyFormat.format( subtotal) + "\n";
    //accumulates the overall subtotal for all items
    Pretotal = Pretotal + subtotal;
    //verifies that the user wants to stop entering data
    string_item = JOptionPane.showInputDialog(" Enter a positive integer to continue or 0 to stop. ");
    itemNumber = Integer.parseInt(string_item);
    // loop termination condition if user's input is 0 .It will end the loop
    } while ( itemNumber!= 0);
    tax = Pretotal * tax_rate; // calculate tax amount
    total = Pretotal + tax; //calculate total = subtotal + tax
    //appends data regarding the subtotal, tax, and total to the output area
    output += "\n" + "Order Subtotal" + "\t" + moneyFormat.format( Pretotal) +
    "\n" + "Tax" + "\t\t" + twoDigits.format( tax ) + "\n" + "Order Total" +
    "\t\t" + moneyFormat.format( total );
    //attaches the data in the output variable to the output area
    outputArea.setText( output );
    } //end init
    }// end applet Invoice
    Any help or sugestions would be greatly appreaciated. I've been working on this for over a week and everything I try goes nowhere.

    item # description price(this
    line does not appear in the text file)
    001 shaving cream 400.00
    999 razors 30.00
    I need to load the item# and price from the text file
    into arrays(I have no clue how to use
    multi-dimensional arrays in java and would prefer not
    to)That's good, because you shouldn't use multidimensional arrays here. You should have a one-dimensional array (or java.util.List) of objects that encapsulate each line.
    I've been working on this for days and it seems like
    nothing I try works. My major problems are:
    1. I have no idea how to read the text file and load
    those 2 items into their respective arrays
    2. I can't seem to create a textfile that looks like
    text for the output file.The java.io package has file reading/writing classes.
    Here's a tutorial:
    http://java.sun.com/docs/books/tutorial/essential/io/index.html

  • I'm new to java and need help please(repost)

    I have an assignment involves modifying a previous assignment. the code for the previous assigment is shown below.(it was required to be done as an applet this assigment can be an application or an applet) I'm trying to modify this code to read a text file (items.txt) that looks like this:
    item # description price(this line does not appear in the text file)
    001 shaving cream 400.00
    999 razors 30.00
    I need to load the item# and price from the text file into arrays(I have no clue how to use multi-dimensional arrays in java and would prefer not to)
    I need to search the arrays based on the values entered by the user (item # and quantity) calculate the total for that item then create a new text file which has each line item for that order in the form:
    item# quant price per item total(price per item*quant entered)
    also also I need to be able to display the four items listed above after each loop as well as all the previous item number and quantities they selected until they indicate they don't want to select anymore.
    I've been working on this for days and it seems like nothing I try works. My major problems are:
    1. I have no idea how to read the text file and load those 2 items into their respective arrays
    2. I can't seem to create a textfile that looks like text for the output file.
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.text.*;
    import java.util.Locale;
    public class arraySelection
        extends JApplet {
      //Initialize the applet
      private Container getContentPane=null;
      public void init() {
           String string_item, string_quantity;
           String output = "";
           String description= "";
           int counter= 0;
           int itemNumber= 0;
           double quantity = 0 ;
           double tax_rate=.07;
           double total= 0, price= 0;
           double tax, subtotal;
           double Pretotal= 0;
           double priceArray[] = {1, .5, 3.65, 0.02, 0.09};
           String descriptionArray[] = {"salt", "pepper", "paprika", "garlic", "thyme"};
         // create number format for currency in US dollar format
         NumberFormat moneyFormat = NumberFormat.getCurrencyInstance( Locale.US );
         //format to have the total with two digits precision
         DecimalFormat twoDigits = new DecimalFormat("0.00");
         //Jtextarea to display results
         JTextArea outputArea = new JTextArea ();
         // get applet's content pane
          Container container = getContentPane ();
          //attach output area to container
          container.add(outputArea);
         //set the first row of text for the output area
        output +=  "Invoice\nItem#\tDescription\tQuant@Price\t Line Total" + "\n";
        do //begin loop structure obtain input from user
               // obtain item number from user
               string_item = JOptionPane.showInputDialog(
                   "Please enter an item number 1, 2, 3, 4, or 5:");
               //obtain quantity of each item that user enter
               string_quantity = JOptionPane.showInputDialog("Enter the quantity:");
               // convert numbers from type String to Integer or Double
               itemNumber = Integer.parseInt(string_item);
               quantity = Double.parseDouble(string_quantity);
                 switch (itemNumber) {//Determine input from user to assign price and description
                    case 10: // user input item =10
                      price = priceArray[0];
                      description = descriptionArray[0];
                      break;
                    case 20: // user input item =20
                      price = priceArray [1];
                      description = descriptionArray[1];
                      break;
                    case 30: //user input item =30
                      price=priceArray[2];
                      description = descriptionArray[2];
                      break;
                    case 40: //user input item =40
                      price=priceArray[3];
                      description = descriptionArray[3];
                      break;
                    case 50: //user input item =50
                      price=priceArray[4];
                      description = descriptionArray[4];
                      break;
                    default: // user input item is not on the list
                    output += "Invalid value entered"+ "\n";
                    price=0;
                    description= "";
             //Calculates the total for each item number and stores it in subtotal
             subtotal = price * quantity;
             //display input from user
             output += itemNumber + "\t" + description + "\t\t"+ quantity + "@" +
                       moneyFormat.format( price) + "\t" + moneyFormat.format( subtotal) + "\n";
             //accumulates the overall subtotal for all items
             Pretotal = Pretotal + subtotal;
            //verifies that the user wants to stop entering data
            string_item = JOptionPane.showInputDialog(" Enter a positive integer to continue or 0 to stop. ");
            itemNumber = Integer.parseInt(string_item);
          // loop termination condition if user's input is 0 .It will end the loop
       } while ( itemNumber!= 0);
        tax = Pretotal * tax_rate; // calculate tax amount
        total = Pretotal + tax; //calculate total = subtotal + tax
        //appends data regarding the subtotal, tax, and total to the output area
        output += "\n" + "Order Subtotal" + "\t" + moneyFormat.format( Pretotal) +
                  "\n" + "Tax" + "\t\t" + twoDigits.format( tax ) + "\n" + "Order Total" +
                  "\t\t" + moneyFormat.format( total );
         //attaches the data in the output variable to the output area
         outputArea.setText( output );
      } //end init
    }// end applet InvoiceAny help or sugestions would be greatly appreaciated. I've been working on this for over a week and everything I try goes nowhere.

    First answer: You shouldn't ask multiple questions in the same thread. Ask a specific question, with an appropriate subject line (optionally, assign the number of Dukes you are willing to give for the help). When question #1 is answered and question #2 arises, it's time for a new thread (don't forget to give out Dukes before moving on).
    Second answer: I think you need a Transfer Object (http://java.sun.com/blueprints/patterns/TransferObject.html). It's whole purpose is to hold/transfer instance data where it is needed. Create a class something like this:
    public class ItemTO
        private String _number;
        private String _description;
        private double _price;
        public ItemTO( String number, String description, double price )
            _number = number;
            _description = description;
            _price = price
        // Getter/Setter methods go here
    }then, in the code where you read in the file do something like this:
    BufferedReader input = null;
    try
        input  = new BufferedReader( new FileReader( "c:\\a.txt" ) );
        List items = new ArrayList();
        String line;
        String itemNumber;
        String itemDescription;
        double itemPrice;
        while ( (line  = input.readLine() ) != null )
         System.out.println( line );
            itemNumber = // Parse it from line
            itemDescription // Parse it from line
            itemPrice = // Parse it from line
            items.add( new ItemTO( itemNumber, itemDescription, itemPrice ) );
    catch ( FileNotFoundException fnfe )
        fnfe.printStackTrace();
    catch ( IOException ioe )
        ioe.printStackTrace();
    finally
        try
            if ( input != null )
                input.close();
        catch ( Exception e )
            e.printStackTrace();
    }As for how to parse the line of the file, I'll leave that to you for now. Are the three values delimited with any special characters?
    jbisotti

  • Trying to activate cs6 and need help please

    i just spent an hour with this dude in india trying to activate cs6 production premium academic
    i am trying to 'offline' activate my editing rig because it's too heavy to move to internet
    also i installed the trial version of cs6 production premium
    and tried to activate that with the academic serial numbers (because it installed correctly and the updates, too)
    i got the REQUEST code:  when you type it into the activation page do you use the spacebar between each set of 4 characters?
                                              are the 0's upper case letter o's or are they zeros?
    we tried all sorts of combinations and nothing works so i'm supposed to wait 4-5 hours  until licensing/activation people get into the office...
    does anyone have any help or advice on this please?
    thanks again,
    j

    >editing rig because it's too heavy to move to internet
    Since there have been bug fix updates, you will need to get the update files to your computer
    Either by using a different computer and a USB flash drive, or by buying a LONG network cable
    All Adobe updates start here and select product, read to see if you need to install updates in number order, or if the updates are cumulative for the individual product http://www.adobe.com/downloads/updates/

  • I am new and need help please...

    Hello, I used up my subscription time before the month was up so I bought credit. It says that my subscription would refill on today's date, but it hasn't. I had to buy more credit to call. I emailed Skype and they said it's because I have reached an Unmonitored alias and gave me a link to the support Page... What do I need to do to resolve this? Can someone please help me?

    please contact Skype customer service
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

  • Keep getting BSOD and need help PLEASE ! P7N Platinum Sli

    Hey guys ,
     Can someone please help me ? I have been getting BSOD for along time now and then i get a windows recovered from serious error when it boots back up , i always send in the error report and usually it says a driver problem but i have re-installed every driver servral times and and re-formated my pc sevral times to try and get it to run right . Now i finally got a different report back from windows error reporting saying a "Non Compatable BIOS is the cause " here is the error report screeny i took and uploaded to flickr  http://farm4.static.flickr.com/3538/3349882297_4a3194e3df_b.jpg and this is another screeny in flickr of my BIOS in MSI Info View http://farm4.static.flickr.com/3445/3349882397_ef282a33d2_b.jpg , i believe i have the newest BIOS installed and the correct one also and have been running that version for along time . When i first setup this system i could not get my Q9550 to boot at all with this mobo till i updated the bios to the P0B6 but have never had it stable from BSOD . My Specs are Q9550 "Core 2 Quad Yorkfield SLAWQ Q9550 333 2.83 12M " / MSI P7N Platinum 750i SLI / OCZ Vendetta CPU cooler / 4GB- 4x1GB OCZ FLEX DDR2 1150 / OCZ GameXtreme 1010W / 2x - XFX GTX260 Black Edition in SLI / 1TB Seagate HD .
     Also i had just tried the live update but it says there is no new updates for bios , when i first did the update i used a 3.5 floppy and flashed the bios to the ver i currently have now because there was no way for me to use the live update with XP Pro 64bit , Now im running Xp Pro 32bit w. SP2
      Please help ??? Please help ??? Please help ??? Please help ??? Please help ??? Please help ??? Please help ??? Please help ??? Please help ??? Please help ??? Please help ??? Please help ???

    Quote from: NovJoe on 14-March-09, 11:22:13
    I suggest that you clear CMOS and use flash it to the BIOS v1.1 under the MSI website for your board and see how it goes.
    http://global.msi.com.tw/index.php?func=downloaddetail&type=bios&maincat_no=1&prod_no=1373
    LOL thats funny !!!!!  1.1 is what came installed on the mobo and is not compatable with the Q9550 it will never boot to bios using 1.1 with a quad core ! Thats the first problem i had thats why i explained all the steps i had to go through to get this mobo / cpu to boot with the help from MSI tech support !

  • I'm on the fence and need help, please.

    My service contract is up and I'm ready to get a new phone.  I want a touch screen phone with no data plan and I'm turn between the Lg cosmos touch and the KIN 2m.  I have seen a lot of mixed reviews on the 2m and mostly positive reviews for the cosmos touch.  I have held the cosmos touch in the store and really liked the feel of the phone, seemed very solid and well built.  The stores in my area do not carry the 2m and they almost scolded me when I asked about it.
    My current phone uses are just talk with very light texting, the camera on my current phone is so bad that I don't use it and it's not an mp3 player either.  I would like my new phone to be a good talk phone with a decent camera and mp3 player which the 2m seems to have covered, but I do have a few questioned for you as follows.
    1. With only 8Gig of memory probably less usable about how many songs will the 2m hold?
    2. Does the phone feel well built and solid like the cosmos touch?
    3. Does the radio use up your minutes or is it free?
    4. How would you rate the camera?

    As for physical quality of the phones, the cosmos touch is better. It has a more durable feel to it. However, i would still pick the Kin 2m. The front of the phone is very rigid and strong, the only drawback to the Kin's physical quality is its battery door. It is thin and feels cheap. However, i put a Skinomi 'Techskin' on my phone yesterday, and i am very satisfied with it. Along with a few rubber bumpers on the inside of the battery cover, it makes the phone feel as solid as any other. As mentioned, cases are available for this phone, too. Their quality is pretty good, the only drawback is the slightly added bulk. However, with the Techskin (similar to Zagg's invisibleshields..only better), i feel like i have adequate protection for the phone. It also fixes the slippery feeling of the battery door texture. The skinomi skins cost $10 for the screen only, and $18 for the full skin (front and back). It has a lifetime replacement warranty too, and from reviews i've read, their customer service is good enough to hold you to that.
    I would recommend the Kin 2m. Your phone needs are very similar to what i was looking for about a month ago when i upgraded phones: calling/texting, and a camera (and in your case, an MP3 player). Its call quality is exceptional in my opinion, both the earpiece and speakerphone. The camera is top-notch, @ 8mp and HD video. You do have to hold the phone still while taking the picture, but that is the same with any phone camera (their shutter speeds are quite a bit slower than regular cameras). It has  fully incorporated Zune player in it,  along with FM radio (the radio is free, but you do have to plug in headphones to use it; it uses the headphones as an antenna). The 8 GB is plenty big for me. As for how many songs it can hold, it will vary from the quality of the music you have. Standard is 160 kbps, but for me personally, i can drop it all the way down to ~112 and still not notice the decrease in sound quality (i'm pretty sure the Zune software has a way to do this, i'm not familiar with it though, i know iTunes can do it though..). That allows me to add 1.5x more music to the same amount of storage space. Create a few playlists and add your favorite albums/artists, and you'll still have plenty of storage.

  • Stuck and need help please

    I am a student and I am stuck. I need to draw 100 random lines using the method drawLine. I do not know how to incorporate the random number . I know how to draw a set number of lines (such as 7)...Below is the code I have so far.
    import java.awt.*;
    import javax.swing.*;
    public class RandomLines extends JFrame {
    //     constructor sets window's title bar string and dimensions
         public RandomLines()
              super("Random Line ScreenSaver");
              setSize( 475, 430 );
              setVisible( true );
    //      display lines
    public void paint (Graphics g)
         super.paint(g);     //call superclass's paint method
         int xValues[] = { 70, 90, 100, 80, 70, 65, 60 };
         int yValues[] = { 100, 100, 110, 110, 130, 110, 90};
         g.drawPolyline(xValues, yValues, 7);
    //execute application
    public static void main ( String args [])
         RandomLines application = new RandomLines();
         application.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }

    Here's enough to get you unstuck.import java.util.Random;
    Random rand = new Random();
    xValues[i] = rand.nextInt(width);

  • How can I add a new Template to My Templates in Pages? I've read most of the discussions on the subject but it doesn't work for me. By the time I reach the Templates folder, I only see templates for Numbers and not for Pages. Need help, please.  Thanks

    How can I add a new Template to My Templates in Pages? I've read most of the discussions on the subject but it doesn't work for me. By the time I reach the Templates folder, I only see templates for Numbers and not for Pages. Need help, please.  Thanks

    Si vous avez utilisé la commande Save As Template depuis Pages, il y a forcément un dossier
    iWork > Pages
    contenant Templates > My Templates
    comme il y a un dossier
    iWork > Numbers
    contenant Templates > My Templates
    Depuis le Finder, tapez cmd + f
    puis configurez la recherche comme sur cette recopie d'écran.
    puis lancez la recherche.
    Ainsi, vous allez trouver vos modèles personnalisés dans leur dossier.
    Chez moi, il y en a une kyrielle en dehors des dossiers standards parce que je renomme wxcvb.template quasiment tous mes documents Pages et wxcvb.nmbtemplate à peu près tous mes documents Numbers.
    Ainsi, quand je travaille sur un document, je ne suis pas ralenti par Autosave.
    Désolé mais je ne répondrai plus avant demain.
    Pour moi il est temps de dormir.
    Yvan KOENIG (VALLAURIS, France)  mercredi 23 janvier 2011 22:39:28
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • HT1222 I am trying like **** to download itunes 10.6.3 (64 bit - Windows 7) and I keep getting "the installer was interrupted before the requested operations for iTunes could be completed.  Your systems has not been modified."  I NEED HELP, PLEASE!

    I am trying like **** to download itunes 10.6.3 (64 bit - Windows 7) and I keep getting "the installer was interrupted before the requested operations for iTunes could be completed.  Your systems has not been modified."  I NEED HELP, PLEASE!

    I got it figured out myself... yaaaaay for me!

  • After my iphone4S update to 7.0.6, it have a problem that keep searching network then no service show on display. Can't call. I have try check sim card, reset network settings, and restore my iphone. Still not working at all. Need help please.

    After my iphone4S update to 7.0.6, it have a problem that keep searching network then no service show on display. Can't call. I have try check sim card, reset network settings, and restore my iphone. Still not working at all. Need help please.Urgent.TQ

    Izit software or hardware? Confuse:(
    Only can use wifi now.
    Any way thanks guys for ur suggestion:) amishcake and simes

  • Bought a new macbook and want to manually manage music onto my iphone 4s but when i click 'manually manage' and then 'apply' i get the message saying it will erase everything already on there. Need help please!

    Bought a new macbook and want to manually manage music onto my iphone 4s (as it is already full of music from old windows laptop) but when i click 'manually manage' and then 'apply' i get the message saying it will erase everything already on there. Need help please!

    Before you sync your iPhone make sure that all the music that was synced to your phonereviously has been copied to your iTunes on the new MacBook Pro. Then when you connect your phone you will be able to either sync all music or select only those playlists that you want on the phone.

  • HT4314 Hi i need help please i been playing clash of clans over 13 months. And today o realise what someone using my game Centra. Someone playing on my game Clash of Clans. I been change my Apple ID password, email, but doesn't work. Then I playing game I

    Hi i need help please i been playing clash of clans over 13 months. And today o realise what someone using my game Centra. Someone playing on my game Clash of Clans. I been change my Apple ID password, email, but doesn't work. Then I playing game I can see what someone else trying connecting to my game And I don't know what to do.So if you can help me please? I don't wanna lose my game.

    Contact iTunes
    Contact iTunes

  • Hi i need help please i been playing clash of clans over 13 months. And today o realise what someone using my game Centra. Someone playing on my game Clash of Clans. I been change my Apple ID password, email, but doesn't work. Then I playing game I can se

    Hi i need help please i been playing clash of clans over 13 months. And today o realise what someone using my game Centra. Someone playing on my game Clash of Clans. I been change my Apple ID password, email, but doesn't work. When I playing game I can see what someone else trying connecting to my game And I don't know what to do.So if you can help me please? I don't wanna lose my game. 

    Hello Vaidas Vaidas,
    It sounds like you are noticing someone else is accessing your Clash of Clans data by playing the game and you have tried to reset your Apple ID password. If you are following the steps outlined in this article:
    Apple ID: Changing your password
    http://support.apple.com/kb/ht5624
    What is preventing you from changing your password? Any error messages or prompts?
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

Maybe you are looking for