Set all JLabels to end at the same point

I have a panel that display rows of:
label +text area
label +text fiels ....
each row has a couple of elements in it.
I order each row in an Horizental Box ended with an Horizontal glue .
and wrapped all Horizontal Boxes to a Vertical Box that is placed
as the north element in the panel(Border Layout).
I need to set all the labels to end at the same point how can I do that
In a generic way?
thanks liat

The label size is set according to the text on it....
my problem is I want the label to be aligned to the same point at the end!!!!(from right)
while the text on the label is aligned to the left:
it should be like this
lbl1************* textField1
lbl2xxxxxxxxxx textFiels2
meaning no matter what is the text - all labels end at the same point
anyway ....thanks

Similar Messages

  • XML document structures must start and end within the same entity

    Hi there,
    I'm working with a client/server application and using SaxParser for reading in xml. I get the SaxParserException: XML document structures must start and end within the same entity. I understand what that means, but it isn't applicable! The xml data being used is well-formed. I checked the well-formedness with Stylus Studio to make sure. Here's the data:
    <?xml version='1.0' encoding='UTF-8'?>
    <vcmessage>
         <vcsource>3</vcsource>
         <processevent>16</processevent>
         <shape>
              <llindex>0</llindex>
              <shapetype>9</shapetype>
              <shapeproperties>
                   <shapelocation>
                        <xcoord>54</xcoord>
                        <ycoord>184</ycoord>
                   </shapelocation>
                   <bounds>
                        <width>24</width>
                        <height>24</height>
                   </bounds>
                   <fgcolor>
                        <fgred>0</fgred>
                        <fggreen>0</fggreen>
                        <fgblue>0</fgblue>
                   </fgcolor>
                   <bgcolor>
                        <bgred>255</bgred>
                        <bggreen>255</bggreen>
                        <bgblue>255</bgblue>
                   </bgcolor>
                   <thickness>1</thickness>
                   <isfilled>false</isfilled>
              </shapeproperties>
         </shape>
    </vcmessage>The parser generally stops around the </bgcolor> tag.
    I'm using Eclypse as my IDE. I'm wondering if there's something wrong with it? Or maybe there's something wrong with the class I'm using for reading in the XML? Followng is the class.
    Please advise,
    Alan
    package vcclient;
    import java.io.*;
    import org.xml.sax.*;
    import org.xml.sax.helpers.*;
    import javax.xml.parsers.*;
    public class XMLDocumentReader extends DefaultHandler
      private VCClient client = null;
      private Writer out;
      private String lineEnd =  System.getProperty("line.separator");
      private boolean haveSourceType = false;
      private boolean haveUserName = false;
      private boolean haveMessage = false;
      private boolean haveProcessEvent = false;
      private boolean haveLinkedListIndex = false;
      private boolean haveOpeningShapePropertiesTag = false;
      private boolean haveShapeType = false;
      private boolean haveOpeningShapeLocationTag = false;
      private boolean haveShapeLocation = false;
      private boolean haveOpeningXCoordTag = false;
      private boolean haveOpeningYCoordTag = false;
      private boolean haveOpeningBoundsTag = false;
      private boolean haveBoundsWidth = false;
      private boolean haveBoundsHeight = false;
      private boolean haveOpeningFGColorTag = false;
      private boolean haveOpeningBGColorTag = false;
      private boolean haveOpeningThicknessTag = false;
      private boolean haveOpeningIsFilledTag = false;
      private boolean haveOpeningImageDataTag = false;
      private boolean haveOpeningTextDataTag = false;
      private boolean haveFGRed = false;
      private boolean haveFGGreen = false;
      private boolean haveFGBlue = false;
      private boolean haveBGRed = false;
      private boolean haveBGGreen = false;
      private boolean haveBGBlue = false;
      private boolean haveThickness = false;
      private boolean haveIsFilled = false;
      private boolean haveImageData = false;
      private boolean haveTextData = false;
      private VCMessage vcmessage = null;
      public XMLDocumentReader(VCClient value)
           client = value;
           vcmessage = new VCMessage();
      public VCMessage getVCMessage()
           return vcmessage;
      public boolean haveSourceType()
         return haveSourceType; 
      public boolean ParseXML(InputStream stream)
         boolean success = false;
         // Use the default (non-validating) parser
        SAXParserFactory factory = SAXParserFactory.newInstance();
        try
             // Set up output stream
            out = new OutputStreamWriter(System.out, "UTF-8");
            // Parse the input
            SAXParser saxParser = factory.newSAXParser();
            saxParser.parse( stream, this );
            success = true;
        catch (SAXParseException spe)
            // Error generated by the parser
            System.out.println("\n** Parsing error"
               + ", line " + spe.getLineNumber()
               + ", uri " + spe.getSystemId());
            System.out.println("   " + spe.getMessage() );
            // Unpack the delivered exception to get the exception it contains
            Exception  x = spe;
            if (spe.getException() != null)
                x = spe.getException();
            x.printStackTrace();
            return success;
        catch (SAXException sxe)
             // Error generated by this application
             // (or a parser-initialization error)
             Exception  x = sxe;
             if (sxe.getException() != null)
                 x = sxe.getException();
             x.printStackTrace();
             return success;
        catch (ParserConfigurationException pce)
            // Parser with specified options can't be built
            pce.printStackTrace();
            return success;
        catch (Throwable t)
             t.printStackTrace();
             return success;
        return success;
      public void startDocument()throws SAXException
          emit("<?xml version='1.0' encoding='UTF-8'?>");
          nl();
      public void endDocument()throws SAXException
          try {
              nl();
              out.flush();
          } catch (IOException e) {
              throw new SAXException("I/O error", e);
      public void startElement(String namespaceURI,
                               String lName, // local name
                               String qName, // qualified name
                               Attributes attrs)throws SAXException
          String eName = lName; // element name
          if (eName.equals(""))
             eName = qName; // namespaceAware = false
          emit("<"+eName);
          if (attrs != null) {
              for (int i = 0; i < attrs.getLength(); i++) {
                  String aName = attrs.getLocalName(i); // Attr name
                  if (aName.equals("")) aName = attrs.getQName(i);
                  emit(" ");
                  emit(aName + "=\"" + attrs.getValue(i) + "\"");
          emit(">");
          if(makeStartTag(eName).equals(Constants.OPENING_SHAPEPROPERTIES))
                haveOpeningShapePropertiesTag = true;
          else if(makeStartTag(eName).equals(Constants.OPENING_SHAPELOCATION))
              haveOpeningShapeLocationTag = true;
          else if(makeStartTag(eName).equals(Constants.OPENING_BOUNDS))
                haveOpeningBoundsTag = true;
          else if(makeStartTag(eName).equals(Constants.OPENING_FGCOLOR))
                 haveOpeningFGColorTag = true;
          else if(makeStartTag(eName).equals(Constants.OPENING_BGCOLOR))
              haveOpeningBGColorTag = true;
          else if(makeStartTag(eName).equals(Constants.OPENING_BGGREEN))
               System.out.println("See BGGreen");
          else if(makeStartTag(eName).equals(Constants.OPENING_BGBLUE))
               System.out.println("See BGBlue");
          else if(makeStartTag(eName).equals(Constants.OPENING_THICKNESS))
              haveOpeningThicknessTag = true;
          else if(makeStartTag(eName).equals(Constants.OPENING_ISFILLED))
              haveOpeningIsFilledTag = true;
          else if(makeStartTag(eName).equals(Constants.OPENING_IMAGEDATA))
              haveOpeningImageDataTag = true;
          else if(makeStartTag(eName).equals(Constants.OPENING_TEXTDATA))
              haveOpeningTextDataTag = true;
      public void endElement(String namespaceURI,
                             String sName, // simple name
                             String qName  // qualified name
                            )throws SAXException
           if(sName.equals("") && !qName.equals(""))
              sName = qName;
              emit("</"+sName+">");
           else
              emit("</"+sName+">");
           if(makeEndTag(sName).equals(Constants.CLOSING_SOURCE_TYPE))
              haveSourceType = true;
           else if(makeEndTag(sName).equals(Constants.CLOSING_USER))
              haveUserName = true;
           else if(makeEndTag(sName).equals(Constants.CLOSING_MESSAGE))
              haveMessage = true;
           else if(makeEndTag(sName).equals(Constants.CLOSING_PROCESSEVENT))
               haveProcessEvent = true;
           else if(makeEndTag(sName).equals(Constants.CLOSING_LINKEDLISTINDEX))
               haveLinkedListIndex = true;
           else if(makeEndTag(sName).equals(Constants.CLOSING_SHAPETYPE))
               haveShapeType = true;
           else if(makeEndTag(sName).equals(Constants.CLOSING_SHAPELOCATION))
                haveOpeningShapeLocationTag = false;
           else if(makeEndTag(sName).equals(Constants.CLOSING_WIDTH))
               haveBoundsWidth = true;
           else if(makeEndTag(sName).equals(Constants.CLOSING_HEIGHT))
               haveBoundsHeight = true;
           else if(makeEndTag(sName).equals(Constants.CLOSING_BOUNDS))
                haveOpeningBoundsTag = false;
           else if(makeEndTag(sName).equals(Constants.CLOSING_FGRED))
               haveFGRed = true;
           else if(makeEndTag(sName).equals(Constants.CLOSING_FGGREEN))
               haveFGGreen = true;
           else if(makeEndTag(sName).equals(Constants.CLOSING_FGBLUE))
               haveFGBlue = true;
           else if(makeEndTag(sName).equals(Constants.CLOSING_FGCOLOR))
                haveOpeningFGColorTag = false;
           else if(makeEndTag(sName).equals(Constants.CLOSING_BGRED))
               haveBGRed = true;
           else if(makeEndTag(sName).equals(Constants.CLOSING_BGGREEN))
             haveBGGreen = true;
           else if(makeEndTag(sName).equals(Constants.CLOSING_BGBLUE))
               System.out.println("See closing BGBlue");
               haveBGBlue = true;
           else if(makeEndTag(sName).equals(Constants.CLOSING_BGCOLOR))
                haveOpeningBGColorTag = false;
           else if(makeEndTag(sName).equals(Constants.CLOSING_THICKNESS))
               System.out.println("XMLDocumentReader: Step2");
                haveOpeningThicknessTag = false;
           else if(makeEndTag(sName).equals(Constants.CLOSING_ISFILLED))
               haveOpeningIsFilledTag = false;
           else if(makeEndTag(sName).equals(Constants.CLOSING_IMAGEDATA))
               haveOpeningImageDataTag = false;
           else if(makeEndTag(sName).equals(Constants.CLOSING_TEXTDATA))
               haveOpeningTextDataTag = false;
      private String makeStartTag(String tag_name)
           String start = "<";
           String end = ">";
           return start.concat(tag_name).concat(end);
      private String makeEndTag(String tag_name)
           String start = "</";
           String end = ">";
           return start.concat(tag_name).concat(end);
      public void characters(char buf[], int offset, int len)throws SAXException
           String s = new String(buf, offset, len);
          if(haveSourceType == false)
               if(vcmessage.getSourceType() == null)
                  try
                    if(s.equals(""))return;
                   int sourcetype = Integer.parseInt(s);
                   vcmessage.setSourceType(sourcetype);                            
                  catch(NumberFormatException nfe){}
          else if(vcmessage.getSourceType() == SourceType.CHAT_SOURCE)
            if(vcmessage.getSourceType() == SourceType.CHAT_SOURCE && haveUserName == false)
                 vcmessage.setUserName(s);          
            else if(vcmessage.getSourceType() == SourceType.CHAT_SOURCE && haveMessage == false)
               //When the parser encounters interpreted characters like: & or <,
               //then this method gets invoked more than once for the whole message.
               //Therefore, we need to concatonate each portion of the message.  The
               //following method call automatically concatonates.
               vcmessage.concatMessage(s);                    
          else if(vcmessage.getSourceType() == SourceType.WHITEBOARD_SOURCE)
               if(haveProcessEvent == false)
                 try
                   vcmessage.setProcessEvent(Integer.parseInt(s));
                 catch(NumberFormatException nfe){}
               else if(haveLinkedListIndex == false)
                    try
                       vcmessage.setLinkedListIndex(Integer.parseInt(s));
                     catch(NumberFormatException nfe){}
               else if(haveShapeType == false)
                    try
                       vcmessage.setShapeType(Integer.parseInt(s));
                     catch(NumberFormatException nfe){}
               if(haveOpeningShapePropertiesTag)
                    if(haveOpeningShapeLocationTag)
                         if(haveOpeningXCoordTag)
                              try
                                vcmessage.setXCoordinate(Integer.parseInt(s));
                              catch(NumberFormatException nfe){}
                         else if(haveOpeningYCoordTag)
                              try
                                vcmessage.setYCoordinate(Integer.parseInt(s));
                                //reset all flags for ShapeLocation, X and Y coordinates
                                haveOpeningXCoordTag = false;
                                haveOpeningYCoordTag = false;
                                //haveOpeningShapeLocationTag = false;
                              catch(NumberFormatException nfe){}
                    else if(haveOpeningBoundsTag)
                         if(haveBoundsWidth == false)
                              try
                                vcmessage.setBoundsWidth(Integer.parseInt(s));
                              catch(NumberFormatException nfe){}
                         else if(haveBoundsHeight == false)
                              try
                                vcmessage.setBoundsHeight(Integer.parseInt(s));
                                //reset flag
                                //haveOpeningBoundsTag = false;
                              catch(NumberFormatException nfe){}
                    else if(haveOpeningFGColorTag)
                         if(haveFGRed == false)
                              try
                                vcmessage.setFGRed(Integer.parseInt(s));                           
                              catch(NumberFormatException nfe){}
                         else if(haveFGGreen == false)
                              try
                                vcmessage.setFGGreen(Integer.parseInt(s));                           
                              catch(NumberFormatException nfe){}
                         else if(haveFGBlue == false)
                              try
                                vcmessage.setFGBlue(Integer.parseInt(s));
                                //reset flag
                                //haveOpeningFGColorTag = false;
                              catch(NumberFormatException nfe){}
                    else if(haveOpeningBGColorTag)
                         if(haveBGRed == false)
                              try
                                vcmessage.setBGRed(Integer.parseInt(s));                           
                              catch(NumberFormatException nfe){}
                         else if(haveBGGreen == false)
                              try
                                vcmessage.setBGGreen(Integer.parseInt(s));                           
                              catch(NumberFormatException nfe){}
                         else if(haveBGBlue == false)
                         {   System.out.println("getting BGBlue data");
                              try
                                vcmessage.setBGBlue(Integer.parseInt(s));
                                //reset flag
                                //haveOpeningBGColorTag = false;
                              catch(NumberFormatException nfe){}
                    else if(haveOpeningThicknessTag)
                         try
                            vcmessage.setThickness(Integer.parseInt(s));                       
                          catch(NumberFormatException nfe){}
                    else if(haveOpeningIsFilledTag)
                         vcmessage.setIsFilled(s);
                    else if(haveOpeningImageDataTag && vcmessage.getProcessEvent() == org.jcanvas.comm.ProcessEvent.MODIFY)
                         vcmessage.setBase64ImageData(s);                    
                    else if(haveOpeningTextDataTag && vcmessage.getProcessEvent() == org.jcanvas.comm.ProcessEvent.MODIFY)
                         vcmessage.setTextData(s);
                    //reset
                    haveOpeningShapePropertiesTag = false;
          emit(s);
      //===========================================================
      // Utility Methods ...
      //===========================================================
      // Wrap I/O exceptions in SAX exceptions, to
      // suit handler signature requirements
      private void emit(String s)throws SAXException
          try {
              out.write(s);
              out.flush();
          } catch (IOException e) {
              throw new SAXException("I/O error", e);
      // Start a new line
      private void nl()throws SAXException
          try {
              out.write(lineEnd);
          } catch (IOException e) {
              throw new SAXException("I/O error", e);
      //treat validation errors as fatal
      public void error(SAXParseException e)
      throws SAXParseException
        throw e;
      // dump warnings too
      public void warning(SAXParseException err)
      throws SAXParseException
        System.out.println("** Warning"
            + ", line " + err.getLineNumber()
            + ", uri " + err.getSystemId());
        System.out.println("   " + err.getMessage());
    }

    Just out of curiosity what happens if you append a space to the end of the XML document?

  • HT1351 I have a new iPod Touch......I was able to successfully set up a new account, but I want it to be separate from the 800 songs I already have in my iTunes library.  How do I set up a separate library on the same computer?

    I have a new iPod touch; I have an iTunes library of music for an older iPod shuffle.  I'd like to set up the iPod touch for my wife with a separate library of music - I was successful in setting up a separte account, but it seems my 800 songs are still there in the library.  How do a set up a new account on the same computer without bringing along all the music that will clog up her iPod touch?

    There's a few ways of doing it. The following document may be of some help:
    How to use multiple iPods, iPads, or iPhones with one computer

  • How do I set up two email address on the same account?

    Using Mail in Mac OS X 10.6.2 and moving to Mac for the first time, I have been unable to set up two email addresses on the same account. Entering them, separated by commas, as advised in the Help does not seem to work. I have tried making them both the same password and have tried separating the passwords with a comma but no luck. Unable to set up another account for the second address because it correctly tells me that the account already exists.
    Is there a way?
    Thanks for any help.
    AllanGlen

    After a comprehensive trial and error session, using a new Guest Account each time to be sure of no contamination from the previous trial, I have finally cracked it!
    The problem was logging on to the outgoing server.
    Setting up the first account was fairly straightforward but if I allow Mail to do it automatically I am unable to send because Mail has defaulted to 'Authentication Required' when my server does not require it. Setting the account manually without authentication enables send and receive to work OK.
    If i try to set up the second account automatically, Mail crashes.
    If I set it up manually and choose 'No Authentication', Mail crashes.
    If I set it up manually and choose 'Authentication Required' and enter the full email address as the User Name together with password, Mail crashes.
    If I set it up manually and choose 'Authentication Required' and enter the first part of the email address together with password, Mail crashes.
    However, if I set it up manually and choose 'Authentication Required' and enter the first part of the email address as User Name and no password, Mail accepts it and sets up the account.
    At this point the account receives mail but cannot send it.
    If I go into the Mail preferences and try to edit the outgoing server details, Mail will not accept no Authentication.
    I eventually found that if I uncheck the 'Always Use This Server' box, all account then use the server on the first account, which is correctly set up.
    Now I have my four email accounts all able send and receive.
    One little concern remains. In Outlook Express I could look at the properties of a received email and see what address it had come from, together with many other details. I haven't found out yet whether this can be done in Mail. I just wonder whether if I reply to some email, it will appear to have come from a different address from the one it was sent to.
    Thanks again for all the inputs.
    Allan

  • Lightning to 30 pin adapter with a lightning end is the same size as the cable that comes with the phone?

    Has anyone found a lightning to 30 pin adapter where the lightning end is the same size as the cable that comes with the phone?  I know there have been some non-apple versions, but I can't tell if they are the same as the Apple versions where the lightnin end is slightly bigger than the cabe that ships with the phone.  Most iPhone bumpers only accomodate the original charing cabe ad the adapter cable is just slighter bigger and doesnt fit.  Also, i'm not referring to the square, cable-less adapter.

    Depending on your caes I shaped mine carefully with a craft knife seems all the case manufacturers designed the cases for lightning cables but seemed blind to the adapter and it's likely use
    Have you not seen the Apple adapter with .2m cable between the  plugs
    http://store.apple.com/us/product/MD824ZM/A/lightning-to-30-pin-adapter-02-m?fno de=3a
    will do what you want ,I use one in exactly same scenario

  • How can i edit lenght of the all layers in timeline at the same time??? in Photoshop cs6 extended

    How can i edit lenght of the all layers in timeline at the same time??? in Photoshop cs6 extended
    Because when i select all layers in layer panel or right in timeline panel, i will be able to edit duration only in one layer... so if i can document with more than 20 layers, the work will be terrible
    Please give me someone some tips... and tricks

    You can't delete the All On My Mac as it is an automatic group to display all of the contacts that are stored "On My Mac." You can delete all of the contacts that are in the ON MY MAC section by selecting All ON My Mac and then selecting all contacts. Press delete and approve the deletion. Then, select each group under ON My Mac and delete those individually.
    Then, Make sure iCloud is set as the default account in the General Address Book Preferences.

  • 27" imac yosemite update hangs. Required power cycle and safe boot to get the update going. Now all OS X update do the same.

    27" iMac Yosemite update hangs.
    The original upgrade to Yosemite (10.10) took almost a full day! The computer hung during one of the reboots and just showed a blank grey screen, no apple logo, no progress bar, nothing. I left it like that for about an hour thinking it might be working in the dark... Eventually I had to power cycle. Disconnected power at the wall outlet for about 5 minutes, then reconnected and tried to start. After about 20 minutes, got to the same point, grey screen:no action, again waited at least an hour.
    Then I did a safe boot. System came up OK in safe mode to the log in screen. As soon as I logged in, it proceeded with the interrupted update, which ran to completion. Yay!
    Now, every update to Yosemite that arrives gives men the same grief!
    To add some more, the "Pro Video Formats 2.0.1" update has installed about 4 times, and is asking to be installed again? There's no indication that it fails the update so whats going on?

    I saw the set hibernet mode to 0 trick and it failed.  Guess I can try 3 because reinstalling OS X did nothing but cost me another few hours and a little faith in Apple.  Getting annoyed as I see how many people complain of the identical issue and the fixes are variable and random.  Suggests to me that it is a major design flaw in the hardware and Apple got too cute with the just works idea and didn't put a damned power button on the display so there is no manual way to do it and no 'insert a pin here' type trick to reset the thing.
    Asking for a refund tomorrow.  Past the 14 days so maybe they'll say no but if so then every time this happens I will swap it out.  At least then I know it is a three hour fix and as I was working on this for hours today it occurred to me that if the trick is to do 57 different things and maybe one will work then that is not why I made the switch to Apple.  I could plug everything in on my PC and it all 'just worked'.
    Really poor customer service - the support folks are very nice and I am sure they know that this is a systemic issue but aren't allowed to say so.  Feeling pretty stupid for going on faith right about now.

  • Photoshop Elemments 10  Datei 2 von 2 (1,2 MB,)  LS15.exe - Missing File Archive. To be able to extract PE-10 all parts must be in the same folder. Download allparts. ??

    Hallo,
    Nachdem ich Teil 1 von PE-10 heruntergeladen hatte, wurde noch PE_10_LS.exe zum Herunterladen angeboten. Das kann aber nicht durchgeführt werden, weil, lt. Fehlermeldung, der Datei-Achivteil fehlt. Um PE-10 extrahieren zu können müssen alle Teile im selben Ordner sich befinden. Zuerst sollen alle Teile heruntergeladen werden.
    Grüße, Michael

    Hallo Kartikay Sharma,
    Solche Missverständnisse mit integrierten Ordnern können passieren:
    dasProblem ist gelöst!
    Bei den Ordnern die sich nach der Ausführung von LS15.7z gebildet hatten, hatte ich LS15.exe in den extrahierten Ordner „PhotoshopElements_10_LS15“ abgelegt. Danach erst zum Ordner mit dem Zip-File und dem extrahierten Ordner.
    Besten Dank für den Hinweis
    Michael Infeld
    Von: Kartikay_Sharma 
    Gesendet: Montag, 8. Dezember 2014 14:24
    An: Michael Infeld
    Betreff:  Photoshop Elemments 10  Datei 2 von 2 (1,2 MB,)  LS15.exe - Missing File Archive. To be able to extract PE-10 all parts must be in the same folder. Download allparts. ??
    Photoshop Elemments 10  Datei 2 von 2 (1,2 MB,)  LS15.exe - Missing File Archive. To be able to extract PE-10 all parts must be in the same folder. Download allparts. ??
    created by Kartikay_Sharma <https://forums.adobe.com/people/Kartikay_Sharma>  in Downloading, Installing, Setting Up - View the full discussion <https://forums.adobe.com/message/6994886#6994886>

  • How to make two pictures that are in side by side mode end at the same time?

    I have two pictures that I have set up to show side by side. But when that section ends, one of them disappears and the other continues to play for another second. How do I make them end at the same time?

    You already posted this in another thread. Why start another?
    http://discussions.apple.com/message.jspa?messageID=9873386#9873386
    It just makes it harder for people to help you and for others looking for answers. If you still need help you can just "bump" the original thread.

  • I delete some emails ,there are moved to trash . I delete them from trash folder too and they still appear in a folder called 'all messages". I repeat the same actions and after a while they appear again!what should i do to delete them permanently??

    I delete some emails ,there are moved to trash . I delete them from trash folder too and they still appear in a folder called 'all messages". I repeat the same actions and after a while they appear again!what should i do to delete them permanently??

    If you are using Apple's Mail app 6.5 is the latest version irrespective of what a previous poster says. It does sound though that you are using a gmail account online via a web browser. Please confirm and fill in missing information.

  • TS4268 I can't activate FaceTime & iMessage on my iPad ... Would this have anything to do with already having these set up on my iPhone with the same apple ID?

    I can't activate FaceTime &amp; iMessage on my iPad ... Would this have anything to do with already having these set up on my iPhone with the same apple ID?

    As long as you're logged into the same AppleID on both devices, this is not a problem.  It's only a problem if you're logged into a different AppleID and then try to associate FaceTime with an email that tied to the other AppleID.

  • How do i set up multiple iCloud accounts on the same mac?

    how do i set up multiple iCloud accounts on the same mac?

    Interesting - I was sure I'd seen a note somewhere that it was only Mail, but this article:
    http://support.apple.com/kb/ts4020
    does say
    Your secondary iCloud accounts can be set up and viewed in Settings > Mail, Contacts, Calendars on your iOS device, or Apple () menu > System Preferences > Mail, Contacts, Calendars on OS X Lion. You may choose to do this if you have a second iCloud account and need to access its Mail, Contacts, or Calendar data. 
    Note: While you can configure multiple iCloud Mail accounts in iOS, Push mail will only work for the primary iCloud account in iOS. Secondary account(s) will check for mail based on the settings in Settings > Mail, Contacts, Calendars > Fetch New Data.
    It's not something I can test - I suppose the second account's data gets added to the lists in iCal and Address Book?

  • How do I delete all of my mail at the same time?

    How do I delete all of my mail at the same time? Or is this even possible? Thanks for your help.

    Unfortunately it isn't possible. You have to select one at a time. You might want to add your name to the many that have requested this feature in the past.
    https://www.apple.com/feedback/ipad.html

  • How do I set two different beat measures in the same project, e.g. 2/4 and 3/4?

    How do I set two different beat measures in the same project, e.g. 2/4 and 3/4?

    mpcsouza wrote:
    How do I set two different beat measures in the same project, e.g. 2/4 and 3/4?
    you can't, GB is restricted to a single time signature per project
    however, the time sig is really more cosmetic, it doesn't affect the way the project plays back, so you could set the project to 2/4 when working on the 2/4 parts, and 3/4 when working on the 3/4 parts

  • My iPod will charge in the computer but not my iPod dock, my sisters iPod dock or the wall charger. My sisters iPod will charge in all and we both have the same sofware and generation. Why won't mine charge?

    My Ipod will charge in the computer but noy my iPod dock, my sisters iPod dock or the wall charger. My sisters iPod will charge in all and we both have the same software and generation. Why won't mine charge?

    Look the dock connector on your iPod. Look for abnormalities like bent or corred contacts, foreign material and cracked/broken plastic.
    Try:
    - A reset. Nothing is lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears..
    - Restore from backup
    - Restore to factory settings/new iPod

Maybe you are looking for

  • Automatic Fields Mapping in Transformation - BI7

    Greeting, Getting some development procedures done automatically will definitely boost up productivity and efficiency. Examples include programs to:  create mass infoObjects, delete mass infoObjects, and activate mass InfoObjects. Again, that are jus

  • How to PI and UN/EDIFACT scenarios?

    Hi folks, I’ll start soon a new PI project with EDI scenarios. It will be my first XI-EDI project and I don’t have any experience with this kind of scenarios. I already read some documentation, as well as some info at SDN, but I still have some incon

  • Ipad has frozen whilst updating system from itunes

    my ipad has frozen with the itunes symbol on it after trying to upload some music from laptop.  The system said I had to update my ipad before continuinng and now it has frozen.  Can not get it to do anything.  When i plug my ipad back into my laptop

  • Using MAPI with JavaMail

    I want to use MAPI protocol to send mail. Is it possible with java mail API. I would appreciate if some body can give me a solution. Thanks Saikumar

  • Renaming main file causes compiled SWF to stop working in Firefox only

    I have a project as follows: src\UploadIndex.mxml (main file) src\com\FileUploader.mxml I want to rename the main file to "FileUploader". I've renamed the component file to "Uploader", then renamed the main file to "FileUploader". The project now loo