Constructor question.Help!

Hi,
I need help!I've been trying to do this for several hours now.
My program takes in parameters a file cellSig.txt and a int in the main program and the int gives the number of for loops that need to be run.Now in the for loop,I have a constructor for class ranData.
for(int model = 0;model<= cross; model++){
ranData objData = new ranData(filename);
}//cross is the parameter int given by user
ranData basically takes the main file cellSig.txt and randomises and divides into 2 other files.It is vital that there should be different files for every 'for' loop.
However I compile and
./ranData.java:5: illegal start of type
try{
^
./ranData.java:40: <identifier> expected
^
keyInput.java:18: cannot resolve symbol
symbol : constructor ranData (java.lang.String)
location: class ranData
ranData objData = new ranData(filename);
I'm posting the ranData.java code below.Pls help..I'm not sure what is wrong.
import java.io.*;
import java.util.*;
public class ranData{
     ArrayList list = new ArrayList();
     try{
     BufferedReader in = new BufferedReader(new FileReader(filename));
     String FileToRead = in.readLine();
     while(FileToRead!= null){
          list.add(FileToRead);
          FileToRead = in.readLine();
     in.close();
     in = null;
     Collections.shuffle(list);
     List trainList = list.subList(0,2000);
     List testList = list.subList(2000,list.size());
     BufferedWriter  objBW =  new BufferedWriter(new FileWriter("cellSig.names"));
     BufferedWriter  objBWt =  new BufferedWriter(new FileWriter("cellSig.names"));
     Iterator x = trainList.iterator();
     Iterator y = testList.iterator();
     String tmp = "";
     String temp = "";
     while(x.hasNext()){
          tmp =(String) x.next() ;
          objBW.write(tmp);
          objBW.newLine();
     while(y.hasNext()){
          temp = (String)y.next() ;
          objBWt.write(temp);
          objBWt.newLine();
     objBW.close();
     objBWt.close();
     objBW = objBWt = null;
     x = y = null;
     }catch(IOException e){
     System.out.println(e);
[\code]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

public RanData(String filename){     
     Filename = filename;
     try{
     BufferedReader in = new BufferedReader(new FileReader(Filename));
     String FileToRead = in.readLine();You are closing the constructor and start coding again without declaring the try catch within a method. Try this:
import java.io.*;
import java.util.*;
public class RanData{
     ArrayList list = new ArrayList();
     public String Filename;
     public RanData(String filename){     
     Filename = filename;
     try{
     BufferedReader in = new BufferedReader(new FileReader(Filename));
     String FileToRead = in.readLine();
     while(FileToRead!= null){
          list.add(FileToRead);
          FileToRead = in.readLine();
     in.close();
     in = null;
     Collections.shuffle(list);
     List trainList = list.subList(0,2000);
     List testList = list.subList(2000,list.size());
     BufferedWriter  objBW =  new BufferedWriter(new FileWriter("cellSig.names"));
     BufferedWriter  objBWt =  new BufferedWriter(new FileWriter("cellSig.names"));
     Iterator x = trainList.iterator();
     Iterator y = testList.iterator();
     String tmp = "";
     String temp = "";
     while(x.hasNext()){
          tmp =(String) x.next() ;
          objBW.write(tmp);
          objBW.newLine();
     while(y.hasNext()){
          temp = (String)y.next() ;
          objBWt.write(temp);
          objBWt.newLine();
     objBW.close();
     objBWt.close();
     objBW = objBWt = null;
     x = y = null;
     }catch(IOException e){
     System.out.println(e);
}I also reccomend you to read a good Java beginners books

Similar Messages

  • Apple id is disabled, to reset the password I do not know the email and security question. help what to do?

    apple id is disabled, to reset the password I do not know the email and security question. help what to do?

    Hi ingaosk,
    Thanks for the question. Based on what you stated, it seems like you did not receive the reset email. I would recommend that you read this article, it may be able to help you isolate or resolve the issue.
    If you didn't receive your Apple ID verification or reset email - Apple Support
    Thanks for using Apple Support Communities.
    Cheers,
    Mario

  • HT1349 I for get security question help my too rest , send to my mail :

    I send email for serves and send to my by email ling I tray eat not help my to rest my security question .
    No we to send security question to my email or what I down I tray from many days
    The serves send that and it,s not help : read it
    Hello,
    The following information for your Apple ID *********** was updated on 02/03/2013:
    Phone number(s)
    If these changes were made in error, or if you believe an unauthorized person accessed your account, please reset your account password immediately by going to iforgot.apple.com.
    To review and update your security settings, sign in to appleid.apple.com.
    This is an automated message. Please do not reply to this email. If you need additional help, visit Apple Support.
    Thanks,
    Apple Customer Support
    Tel my what I do I need my program and my many in my account and wan I need to seal program he asking security question , what I do
    I for get security question help my too rest , send to my mail : ***********
    <E-mail Edited by Host>

    Do not post your email adress here.
    Open your browser and go to iforgot.apple.com and follow the instructions there.

  • HT201363 I forget security question, help me recover?

    I forget security question, help me recover?

    You need to ask Apple to reset your security questions; ways of contacting them include phoning AppleCare and asking for the Account Security team, clicking here and picking a method for your country, and filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (104340)

  • About Java 2 opaque font color question, help needed!

    About Java 2 opaque font color question, help needed!
    I was trying to test opaque font (the string has a foreground color and a background color), but i can't find the method for doing that.
    i can change foreground by Graphics2D.setPaint(Color.black).
    Anybody know how to change the background of the string?
    Thanks!

    Hi. The way I'd do it would be to use the font metrics to find the length of a string and draw a rectangle and then drawstring over the rectangle. If you want an example, I can post it although I suspect theres a better way.

  • I forgot my security queStions help me!

    I forgot my security queStions help me!

    If you have a rescue email address set up on your account then you can try going to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you might see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address set up then go to Express Lane  and select 'iTunes' from the list of 'products' in the middle of the screen.
    Then select 'iTunes Store', and on the next screen select 'Account Management'
    Next choose 'iTunes Store Account Security' and fill in that you'd like your security questions/answers reset.
    You should get an email reply within, I think, about 24 to 48 hours (and check your Spam folder as well as your Inbox)

  • Sister was using my iPod, she changed Apple id to hers, then forgot the iTunes password, now it's disabled she doesn't know what backup email she use or the security questions HELP can Apple reset my iPod?

    sister was using my iPod, she changed Apple id to hers, then forgot the iTunes password, now it's disabled she doesn't know what backup email she use or the security questions HELP can Apple reset my iPod?

    Is there a way to find my Apple ID Name if I can't remember it?
    Yes. Visit My Apple ID and click Find your Apple ID. See Finding your Apple ID if you'd like more information.
    How do I change or recover a forgotten Apple ID Password?
    If you've forgotten your Apple ID Password or want to change it, go to My Apple ID and follow the instructions. SeeChanging your Apple ID password if you'd like more information.
    Forgotten Security Questions/Answers
    You need to contact Apple by:
    1 - Use the Express lane and start here:
    https://expresslane.apple.com
    then click More Products and Services>Apple ID>Other Apple ID Topics>Forgotten Apple ID security questions.
    or
    Apple - Support -form iTunes Store - Contact Us
    2 - Call Apple in your country by getting the number from here:
    http://support.apple.com/kb/HE57
    or          
    Apple ID: Contacting Apple for help with Apple ID account security
    3 - Use your rescue email address if you set one up
    Rescue email address and how to reset Apple ID security questions
    For general  information see:
    Apple ID: All about Apple ID security questions

  • HT5312 forgot the answers to security questions. help.

    forgot the answers to security questions. help.

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • Urgent constructor question..

    I'm trying to call this Flower class in another class called Garden, in which I created a new Flower by using a statement
    private Flower lastflower;
    and it's saying it cannot find the symbol - constructor Flower.
    Can anyone tell me why and help correct this problem?
    Below is the code for my Flower class.
    Any help is really appreciated, it's for my Java class!
    import objectdraw.*;
    import java.awt.*;
    * Write a description of class Flower here.
    * @author (your name)
    * @version (a version number or a date)
    public class Flower
        protected FilledOval dot;
        protected FilledRect stem;
        protected FilledOval petal1;
        protected FilledOval petal2;
        protected static final int boundary = 100;
        protected RandomIntGenerator colorGen =
                new RandomIntGenerator(0,255);
        protected Color petalColor;
        protected Boolean flowerContains=false;
        private DrawingCanvas canvas;
        public void changeColor(){
        dot = new FilledOval(150,150,15,15, canvas);
        dot.setColor(Color.YELLOW);
        petalColor = new Color(colorGen.nextValue(),
                                    colorGen.nextValue(),
                                    colorGen.nextValue());
        petal1.setColor(petalColor);
        petal2.setColor(petalColor);
        public void grow(Location point){
        stem = new FilledRect (dot.getX()+3, dot.getY()+10, 10, 10, canvas);
        stem.setColor(Color.GREEN);
        if (dot.getY()>boundary){
            dot.move(0,-4);
        else{
         petal1 = new FilledOval(dot.getX()-12, dot.getY()-25, 40,70,canvas);
         petal2 = new FilledOval(dot.getX()-25, dot.getY()-10, 70,40,canvas);
         dot.sendToFront();
         stem.sendToBack();
         petal1.setColor(petalColor);
         petal2.setColor(petalColor);
        public Boolean flowerContains(Location point){
            if (petal1.contains(point)){
                return true;
            else if (petal2.contains(point)){
                return true;
            else if (dot.contains(point)){
                return true;
            else{
                return false;
    }

    I don't care how fucking urgent you think it is, it isn't to us. We will answer your question when and how we feel llike it. Have some manners and if you must, then bump your original post. Don't create another time wasting piece of cr&#97;p!

  • Memory Question Help Please

    Alright ive never really been to smart on memory and how it runs and all that. The Question is I have a gig of ram on my mac book but right now it says only 30 mb is free
    wired: 221mb
    active: 524mb
    inactive: 247 mb
    used: 993mb
    now is that normal cause i mean im hardly using anything im using like safari, aim, and itunes. seems like more memory should be free and crap.

    Hi,
    here is link toe help you understand better:
    http://docs.info.apple.com/article.html?artnum=107918
    Good Luck

  • SAP MM questions- help needed

    Please can I get an expert's help in findig a solution to the following questions:
    1 To view the most up to date planning data (available stock, orders, reservations, etc.) on a material, use the:
    (more than one answer can be correct)
    A Stock Overview report.
    B List display of material and accounting documents.
    C MRP list.
    D Stock Requirement list.
    E Standard Analysis for a material
    2 A material forecast can be used by the following MRP types:
    (Only one answer is correct)
    A Manual Reorder point planning.
    B Automatic reorder point planning.
    C Forecast based planning.check
    D Time phased planning.
    E Storage location MRP
    3 Materials planning can be set to automatically generate:
    (more than one answer can be correct)
    A Contracts.
    B Purchase Requisitions.
    C Purchase Orders.
    D Planned Orders.
    E Delivery Schedules.
    4 The following are lot sizing rules available for SAP R/3:
    (more than one answer can be correct)
    A Fixed lot size.
    B Replenish to maximum stock level.
    C Weekly lot size.
    D Daily lot size.
    E Economic order quantity.
    5 Which of the following apply to Purchase Orders?
    (more than one answer can be correct)
    A The vendor must be specified in the Purchase Order Header.
    B All materials on a purchase order must be procured through the same purchasing group.
    C All materials on a purchase order must be of the same material group.
    D Discounts and surcharges can be maintained in the document header.
    E Discounts and surcharges can be maintained at line item level.
    6 Which of the following is an Account Assignment category?
    (more than one answer can be correct)
    A Material Group.
    B Purchase Requisition.
    C Sales Order.
    D Release Code.
    E G/L Account
    7 Which of the following are Item Categories?
    (more than one answer can be correct)
    A Consignment.
    B Service.
    C Manufacturing.
    D Cost Centre.
    E Subcontracting.
    8. Which of the following documents can be subject to release (approval) procedure?
    (more than one answer can be correct)
    A Planned Order.
    B Purchase Requisition.
    C Scheduling Agreement.
    D Purchase Order.
    E RFQ.
    9 In Source lists the following can be sources of supply:
    (more than one answer can be correct)
    A Vendor.
    B Contract.
    C Scheduling Agreement.
    D Quotation.
    E Quota Arrangement.
    10 Which of the following document types can appear in the purchase order history for a purchase order line item?
    (more than one answer can be correct)
    A Another purchase order.
    B A goods receipt material document.
    C A service entry sheet.
    D An invoice.
    E A release procedure.
    11. Which of the following stock types can be counted through Physical Inventory procedure?
    (more than one answer can be correct)
    A Unrestricted use stock.
    B Block stock.
    C Quality Inspection stock.
    D Vendor consignment stock.
    E In-transit stock.
    12 Which of the following cab possibly influence the valuation price of a moving average priced material?
    (more than one answer can be correct)
    A Goods receipt for a purchase order.
    B Goods Issue to a cost centre.
    C Invoice verification against a purchase order.
    D Stock transfer between two storage locations in the same plant.
    E Transfer posting from unrestricted use stock to quality inspection.
    13. In the SAP system a user can operate in the following hierarchies.
    (more than one answer can be correct)
    A Service level.
    B Application level.
    C Main menu level.
    D Month.
    E Total stock value.
    14 Your planning department is using a Forecast Model for materials planning. It has been established that while demand for the particular material is projected to increase steadily as market share is increased, the fluctuating tourist demand will affect the overall requirements. Which forecast model will best address this requirement?
    (Only one answer is correct)
    A The Constant model.
    B The Constant trend model.
    C The Seasonal trend model.
    D The Fluctuating trend model.
    E The Seasonal model.
    15. In the SAP system, the reference document used in the purchasing cycle is the:
    (Only one answer is correct)
    A Purchase requisition.
    B Info record.
    C Source list.
    D Purchase Order.
    E None of the above.
    True / False
    16 What purpose does invoice verification serve in materials management?
    a It allows invoice that do not originate in materials procurement to be processed.
    b Completes the materials procurement process
    c Handles the payment
    d Allows credit memos to be processed
    e Handles the analyses of invoices.  
    17 What are the tasks of invoice verification?
    a Entering invoices and credit memos received.
    b Checking the accuracy of invoices
    c Executing the account posting resulting from invoice
    d Updating open items and material prices
    e Checking invoices that were blocked.
    18 What is the process of invoice verification?
    a Purchase order, service or GR referenced for incoming invoice.
    b Invoice items suggested by the system against referenced document
    c Corresponding automatic account postings carried out.
    d Payment proposal list for vendor generated.
    19 From where does the system pick the default quantity of an item when you post invoice receipt?
    a Invoice
    b Purchase order
    c Purchase order history
    d System settings
    e Vendor master
    20 During invoice verification the system picks the rate at which tax is calculated from the vendor master record.
    TRUE
    FALSE
    Regards
    VS

    Hi Vishal,
    Here are the answers.
    1. C, D
    2. C
    3. B, D, E
    4. A,B,C,D
    5. A, B, D, E
    6. C
    7. A, B, E
    8. B, C, D, E
    9. A, B, C
    10. B, C, D
    11. A, B, C
    12. A, C
    13. E
    14. A
    15. A
    True / False
    16. B, C, D, E
    17. A, B, C, E
    18. A, B, D
    19. C
    20. False
    Hope this helps.
    Thanks,
    Viswanath

  • Security question; HELP!

    So, I changed the email and password to my apple account, the only thing left to do is change my security questions, The problem is I can't send a security question reset because it's only giving me the option to send a reset message to my old email (which I cannot use anymore) why didn't that email change when I changed the emails? I also changed the backup email address? can somebody please help me

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    (119062)

  • IPAD and UPdate to Airprint Printer question Help Please?

    I have an HP 6500 printer that I utilize with my MacbookPro (from 2007) and it operates just fine wirelessly using WiFi at home. I did note  though that my iPod cannot print to the printer as the printer IS NOT AIRPRINT equipped.
    MY QUESTION?
    I am considering purchasing an IPAD MINI (RETINA)equipped with KeyNote, Pages, etc., and am wondering If I invest in an AIRPRINT equipped printer in order to enable printing from the IPAD MINI, will I also still be able to print from my Macbook Pro (2007) which is not equipped with anything that interfaces with AIRPRINT to my new AIRPRINT printer? In other words, is this reversed engineered to allow printing from an older laptop to a brand new AIRPRINT printer?
    Hope you can help, so I don't waste money on a new printer and an IPAD only to find out I can no longer use my LapTop (MacbookPro) to print.
    Thanks you for any help.
    Charles

    Thanks, Jim.
    Going to give it a try, Now, after reading all the reviews on the various HP and Epson model all-in-one printers, my next chore will be to make the actual selection. It seems that there as many people who love each unit as there are who hate each unit. Confusing, but I will digest it over the next several days and make a choice.
    Thanks again,
    Charles

  • Adobe Lightroom 4 - Some Questions / Help Needed

    Hi everyone.
    After advice from several experts, I've just purchased Adobe Lightroom 4. I've already got Photoshop CS5, but I was looking for something proper to organise my photos, plus I found Lightroom easier to do the sort of editing I am wanting to do. Now, I only really use photoshop for things like colour pops, or really in-depth editing. Anyway, I'm loving Lightroom so far, but there is some stuff I'm not very sure of, so I'd appreciate some help
    1. Organising
    Firstly, I'm not really sure how to organise. At the moment, I've just got lots of folders with random events in My Pictures on W7, so I might have a folder called April 11, which contains photos from that month but that might have been a wedding or an easter holiday or both. So it doesn't really work. \
    I understand in Lightroom what catalogs are. But I know enough to know that I don't want to group mine into those, its getting too complicated. What I don't know though is the difference between a collection and a folder. Basically, I'm wanting to reimport and reorganise all my photos, so I want to put them into "events" as such like you can do on iPhoto on a mac, so I would have "France Summer Holiday 11" for example, or "Mia's Wedding". I'm not really sure on the best way to do this ...?
    2. Editing
    I've played around quite a bit so far, and I really like what I've seen. On a lot of photos, I've made a lot of changes. But from what I can see, these changes are stored merely in Lightroom itself. For example, at the moment I'm importing photos from my external disk into Lightroom, which then saves them in C://My Pictures/Lightroom/Pictures . When I go look at these photos in windows explorer which I know I have edited, it doesn't show any of the changes or editing I've done on them. Now I realise this is me being stupid, but why doesn't it? Supposing I then want to email that photo to a friend that I have edited? How would I do that? I don't want to have to open lightroom and export every single photo I edit? There must be a simpler way?
    Likewise for backing up, because all my files are in subfolders within C:// My pictures / Lightroom / Pictures, to back up I was simply going to set up windows to copy that latter folder onto my external HDD everytime I plugged it in. This would be pointless however if it isn't physically overwriting the original photo with my edited version?
    3. Editing 2
    Something else I like to do is make lots of different edits to the same photo. For example, at the moment I'm editing a photo of a pier at night. I spent ages adjusting colours and lighting and so on, and now it looks great. But I would also like to save a copy of that photo with the "old age photo" effect preset on. Is this possible? and how do I do it? Other than obviously importing a duplicate?
    4. & 5. & 6 - Misc:
    4. Simple question - how do I add tags, keywords or comments if I haven't done it on import?
    5. My camera doesn't have built in GPS. Is it possible for me to manually geotag photos (in a batch, say for a Summer Holiday to NY), could I manually add a geotag for all these photos?
    6. I also forgot to add copyright information on import for some, is it possible to do this after import and how?
    7. I normally shoot in JPEG. I probably shoot shoot in RAW as everyone tells me to do so. Are there any significant advantages in terms of quality, and for editing with?
    Thanks for any help given. I appreciate this is a lot of questions, but I could really use the advice.

    Hi William,
    1. Organising
    Firstly, I'm not really sure how to organise. At the moment, I've just got lots of folders with random events in My Pictures on W7, so I might have a folder called April 11, which contains photos from that month but that might have been a wedding or an easter holiday or both. So it doesn't really work. \
    I understand in Lightroom what catalogs are. But I know enough to know that I don't want to group mine into those, its getting too complicated. What I don't know though is the difference between a collection and a folder. Basically, I'm wanting to reimport and reorganise all my photos, so I want to put them into "events" as such like you can do on iPhoto on a mac, so I would have "France Summer Holiday 11" for example, or "Mia's Wedding". I'm not really sure on the best way to do this ...?
    I am not so sure if you understand *catalogs*.
    You need a catalog, exactly 1 in my opinion. A catalog is a database. The Lightroom database, where records about your images are stored, including the pointers to your images, which are not inside a catalog! LR backups just does the backup of the catalog (i.e. a file ending .lrcat). You need to take care separately that your real images are backed up !
    Inside your LR database the best way to organize is via collections - this will give you what you want with "France summer holiday 11" etc.
    Folders are relatively unimportant, just storage buckets. They should be *handy portions*, I would prefer them with below 3000 images each, as there currently some bugs to those bigger ones.
    Before you start with LR, you can organize your pictures in Mac Finder / WindowsExplorer.
    Or you could do it with the help of LR, by copying your images over during import into the destination folders (and deleting today's folders afterwards after having verified that everything is fine).
    A simple date-based structure will do, I'd recommend  a root parent folder like "LR images", underneath one folder per year (\2010\, \2011\, \2012\...) and underneath them either
    just one folder per month (LR can auto-create them for you)
    or you create the folders in import dialog as e.g. "YYYY-MM-DD description of shoot", to have a mini-diary overview also in your OS.
    Apart from that you create collections, either *dumb ones*, where you drag images into, or smart ones, where you specify criteria according to which they get auto-filled.
    2. Editing
    I've played around quite a bit so far, and I really like what I've seen. On a lot of photos, I've made a lot of changes. But from what I can see, these changes are stored merely in Lightroom itself. For example, at the moment I'm importing photos from my external disk into Lightroom, which then saves them in C://My Pictures/Lightroom/Pictures . When I go look at these photos in windows explorer which I know I have edited, it doesn't show any of the changes or editing I've done on them. Now I realise this is me being stupid, but why doesn't it? Supposing I then want to email that photo to a friend that I have edited? How would I do that? I don't want to have to open lightroom and export every single photo I edit? There must be a simpler way?
    Likewise for backing up, because all my files are in subfolders within C:// My pictures / Lightroom / Pictures, to back up I was simply going to set up windows to copy that latter folder onto my external HDD everytime I plugged it in. This would be pointless however if it isn't physically overwriting the original photo with my edited version?
    LR will never overwrite your original photos.
    You can save most of the catalog content into the xmp-part of the original photo, which is either a sidecar-file (.xmp) or part of the file format, like for DNG, TIFF, PSD, JPG. To do so you select the image in LR and hit <ctrl> s. Or you set it up for continuous update, which creates a lot of operations while you play back and forth in develop.
    I do that on my own, typically twice per file: once I am done with develop, once I am done with keywording and other metadata update.
    LR contains records about your images, i.e. a set of instructions how they are to be interpreted. That is all.
    So of course you need LR to export the result of these instructions, which is actually pretty quick.
    To backup your images you need to do that just once, plus you backup your LR catalog. Or if you save xmp to the files, you can do another backup once xmp is ready.
    I would not consider this pointless. You just have to think that there are 2 places with data for your images: the images themselves and a database with interpretation instructions.
    3. Editing 2
    Something else I like to do is make lots of different edits to the same photo. For example, at the moment I'm editing a photo of a pier at night. I spent ages adjusting colours and lighting and so on, and now it looks great. But I would also like to save a copy of that photo with the "old age photo" effect preset on. Is this possible? and how do I do it? Other than obviously importing a duplicate?
    Yes, this is one of LR's beauties: you create a so-called *virtual copy*, which is just a 2nd record for the same original image file with different interpretation settings, like black-and-white, a different crop size, different development etc. You can have as many virtual copies as you like, and you'll see them as additional thumbnails.
    Virtual copies are not saveable into xmp, though. There is another concept which is saveable into xmp: snapshots. but these are different states in develop history, and you do not see outside develop module that you have several.
    If you export virtual copies e.g. to jpg one file per virutal copy will be created.
    4. & 5. & 6 - Misc:
    4. Simple question - how do I add tags, keywords or comments if I haven't done it on import?
    5. My camera doesn't have built in GPS. Is it possible for me to manually geotag photos (in a batch, say for a Summer Holiday to NY), could I manually add a geotag for all these photos?
    6. I also forgot to add copyright information on import for some, is it possible to do this after import and how?
    7. I normally shoot in JPEG. I probably shoot shoot in RAW as everyone tells me to do so. Are there any significant advantages in terms of quality, and for editing with?
    Thanks for any help given. I appreciate this is a lot of questions, but I could really use the advice.
    ad 4: you use the library module, metadata panel to enter.
    ad 5: you use the map module. Either you manually drop your images on a map, or you have a separate GPS track to load and have LR assign via matching time-stamps.
    ad 6: like 4
    ad 7: You don't need JPG from your camera, you can achieve better results viy LR from RAW. Yes, there are significant advantages as to editing headroom.
    Overall, may I suggest my favorite learning material for LR? First watch Julieanne's Tutorial Videos.
    Then go play and use Victoria Bampton's eBook or paper copy of her "Missing FAQs to LR4": http://www.lightroomqueen.com/books/adobe-lightroom-4-missing-faq/
    Have fun,
    Cornelia

  • Got few questions, help will be appreciated ;)

    Hi everyone,
    I just wanted to get few things cleared and I am also looking for someone to help me expand my wireless range.
    First thing could someone help me with this 
    'From the table attached you can see that the 3 hr average for this circuit is
    about 183 Meg. To receive a 20 Meg a 260 Meg band width
    would be ideal, you have 300Meg currently. The max bandwidth shown is only
    223.8 Meg so still below 300. 
    Circuit Summary Type Metric Value Metric Date Metric Type Partition Number
    SFBB00000661 day 3hr avg 176647.31 26/02/2012 00:00:00 Outbound 23
    day max 204271.62 Outbound 23
    day avg 109844.31 Outbound 23
    SFBB00000661 day 3hr avg 138998.88 25/02/2012 00:00:00 Outbound 22
    day max 183034.13 Outbound 22
    day avg 91951.90 Outbound 22
    SFBB00000661 day avg 85018.22 24/02/2012 00:00:00 Outbound 21
    day max 178464.70 Outbound 21
    day 3hr avg 161317.42 Outbound 21
    SFBB00000661 day avg 87265.29 23/02/2012 00:00:00 Outbound 20
    day 3hr avg 174798.02 Outbound 20
    day max 198204.12 Outbound 20
    SFBB00000661 day avg 84817.32 22/02/2012 00:00:00 Outbound 19
    day 3hr avg 183086.98 Outbound 19
    day max 223814.38 Outbound 19
    SFBB00000661 day max 184469.37 21/02/2012 00:00:00 Outbound 18
    day avg 84565.78 Outbound 18
    day 3hr avg 159944.45 Outbound 18
    SFBB00000661 day avg 90702.49 20/02/2012 00:00:00 Outbound 17
    day max 173136.95 Outbound 17
    day 3hr avg 151981.97 Outbound 17'
    I am simply don't understand any of it, however, according to the MOD I have been told 'there is no issue present.' Could someone explain some of the terms and what is actualy mentioned in the table above.
    Expanding Wireless Range.
    I am currently using BT Home hub 3
    I have 2 powerline adapters ,so, from what I understand I can use a 'wireless access point'.
    I am not sure whether if that is the right thing and even if it is, which one should I use with my BT Home Hub 3, any sugesstions. 
    I am currently looking at this guide: http://www.cbeddoe.btinternet.co.uk/wireless/wireless_boost.html
    Would you recommend a different one, please let me know down below in the reply section.
    Thanks

    If you are looking for maximum speed wireless is not the best option a wired network will always be the best
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

Maybe you are looking for