Merge for Labels: suppress white spaces?

I use data merge for address labels and so far it's going pretty well.
The only thing that I couldn't find how to do is suppress unused white spaces. For instance data fields in one line are
<<First Name>> <<Last Name>> <<Department>>
all with one blank in-between. Now if a record for instance has no First and Last Name, I end up with a line that starts with two blanks and the the Job Description.
Is there any way to suppress the leading blanks?
Thomas

I don't think you can do this within the merge feature.
You could do a search and replace afterwards of course: search for a return followed by a space, for example, or use a simple GREP to search for a return followed by white space:
something like find "\r\s+" replace with "\r".
Another way would be to take care of it in the source file, if you have control of it; FileMaker, for example, can be made to produce calculated fields to take care of this kind of thing.

Similar Messages

  • How do i do a mail merge for labels

    I would like to create labels in a Pages document using a Numbers document for the data.  I have it all set up, but upon completing the merge, I get an entire page of the same label (same fields), the next page of labels contains 30 copies of the 2nd row (recipient).  I would like each label to be for a different recipient. How do I get the next label (instead of the next page) to recognize the next row in my Numbers file?   Thanks!

    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=245&highlight=labels &mforum=iworktipsntrick
    Peter

  • Extra white-space after page proccess

    I am trying to suppress white-spaces after the page is
    processed.
    Usually it doesn't bother me, but it does bother javascript.
    Explanation:
    1. I am sending an xmlhttp request to coldfusion to process.
    2. Coldfusion runs a stored procedure on an oracle database
    that returns the results as XML.
    3. Coldfusion returns the XML back to the client:
    <cfoutput>#XmlParse(ajaxXML)#</cfoutput>.
    4. The client (Javascript) runs the function that handle the
    data and returns an error because: "
    xml declaration not at start of external entity".
    I have tried using cfsetting with the attribute:
    enablecfoutputonly="yes", but still the result is the same.
    Any idea or lead in the right direction would be greatly
    appreciated.

    The XML that the DB returns, looks like this:
    <?xml version="1.0"?>
    <rowset>
    <row>
    <column_name>value</column_name>
    <column_name>value</column_name>
    </row>
    </rowset>
    After playing with code for a while now, I believe that the
    problem is not with the returned XML.
    The page that runs the SP is the page that call the SP. What
    means that the white-spaces are the code that the Coldfusion engine
    has already processed (although, the condition that checks whether
    the form variable that Ajax request, exist. Is the first thing on
    the page). to my understanding, the returned XML should be at the
    top of the page.
    I hope that I was clear enough.
    Thank you.

  • Remove white space nodes from jtree

    I am trying to create jtree using XML DOM.
    But I m not able to remove/ignore the white space elements from DOM.
    I am getting output something like this
    for example
    Server
    Text
    node1
    Text
    I want something like this.
    Server
    node1
    I tried all option for removeing the white space
    Here I am posting the source
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.FactoryConfigurationError;
    import javax.xml.parsers.ParserConfigurationException;
    import org.xml.sax.SAXException;
    import org.xml.sax.SAXParseException;
    import java.io.File;
    import java.io.IOException;
    import org.w3c.dom.Document;
    import org.w3c.dom.DOMException;
    // Basic GUI components
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTree;
    // GUI components for right-hand side
    import javax.swing.JSplitPane;
    import javax.swing.JEditorPane;
    // GUI support classes
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.awt.Toolkit;
    import java.awt.event.WindowEvent;
    import java.awt.event.WindowAdapter;
    // For creating borders
    import javax.swing.border.EmptyBorder;
    import javax.swing.border.BevelBorder;
    import javax.swing.border.CompoundBorder;
    // For creating a TreeModel
    import javax.swing.tree.*;
    import javax.swing.event.*;
    import java.util.*;
    public class DomEcho02 extends JPanel
    // Global value so it can be ref'd by the tree-adapter
    static Document document;
    static final int windowHeight = 460;
    static final int leftWidth = 300;
    static final int rightWidth = 340;
    static final int windowWidth = leftWidth + rightWidth;
    public DomEcho02()
    // Make a nice border
    EmptyBorder eb = new EmptyBorder(5,5,5,5);
    BevelBorder bb = new BevelBorder(BevelBorder.LOWERED);
    CompoundBorder cb = new CompoundBorder(eb,bb);
    this.setBorder(new CompoundBorder(cb,eb));
    // Set up the tree
    JTree tree = new JTree(new DomToTreeModelAdapter());
    // Iterate over the tree and make nodes visible
    // (Otherwise, the tree shows up fully collapsed)
    //TreePath nodePath = ???;
    // tree.expandPath(nodePath);
    // Build left-side view
    JScrollPane treeView = new JScrollPane(tree);
    treeView.setPreferredSize(
    new Dimension( leftWidth, windowHeight ));
    // Build right-side view
    JEditorPane htmlPane = new JEditorPane("text/html","");
    htmlPane.setEditable(false);
    JScrollPane htmlView = new JScrollPane(htmlPane);
    htmlView.setPreferredSize(
    new Dimension( rightWidth, windowHeight ));
    // Build split-pane view
    JSplitPane splitPane =
    new JSplitPane( JSplitPane.HORIZONTAL_SPLIT,
    treeView,
    htmlView );
    splitPane.setContinuousLayout( true );
    splitPane.setDividerLocation( leftWidth );
    splitPane.setPreferredSize(
    new Dimension( windowWidth + 10, windowHeight+10 ));
    // Add GUI components
    this.setLayout(new BorderLayout());
    this.add("Center", splitPane );
    } // constructor
    public static void main(String argv[])
    if (argv.length != 1) {
    System.err.println("Usage: java DomEcho filename");
    System.exit(1);
    DocumentBuilderFactory factory =
    DocumentBuilderFactory.newInstance();
    //factory.setValidating(true);
    //factory.setNamespaceAware(true);
    try {
    DocumentBuilder builder = factory.newDocumentBuilder();
    document = builder.parse( new File(argv[0]) );
    makeFrame();
    } catch (SAXException sxe) {
    // Error generated during parsing)
    Exception x = sxe;
    if (sxe.getException() != null)
    x = sxe.getException();
    x.printStackTrace();
    } catch (ParserConfigurationException pce) {
    // Parser with specified options can't be built
    pce.printStackTrace();
    } catch (IOException ioe) {
    // I/O error
    ioe.printStackTrace();
    } // main
    public static void makeFrame() {
    // Set up a GUI framework
    JFrame frame = new JFrame("DOM Echo");
    frame.addWindowListener(
    new WindowAdapter() {
    public void windowClosing(WindowEvent e) {System.exit(0);}
    // Set up the tree, the views, and display it all
    final DomEcho02 echoPanel =
    new DomEcho02();
    frame.getContentPane().add("Center", echoPanel );
    frame.pack();
    Dimension screenSize =
    Toolkit.getDefaultToolkit().getScreenSize();
    int w = windowWidth + 10;
    int h = windowHeight + 10;
    frame.setLocation(screenSize.width/3 - w/2,
    screenSize.height/2 - h/2);
    frame.setSize(w, h);
    frame.setVisible(true);
    } // makeFrame
    // An array of names for DOM node-types
    // (Array indexes = nodeType() values.)
    static final String[] typeName = {
    "none",
    "Element",
    "Attr",
    "Text",
    "CDATA",
    "EntityRef",
    "Entity",
    "ProcInstr",
    "Comment",
    "Document",
    "DocType",
    "DocFragment",
    "Notation",
    // This class wraps a DOM node and returns the text we want to
    // display in the tree. It also returns children, index values,
    // and child counts.
    public class AdapterNode
    org.w3c.dom.Node domNode;
    // Construct an Adapter node from a DOM node
    public AdapterNode(org.w3c.dom.Node node) {
    domNode = node;
    // Return a string that identifies this node in the tree
    // *** Refer to table at top of org.w3c.dom.Node ***
    public String toString() {
    String s = typeName[domNode.getNodeType()];
    String nodeName = domNode.getNodeName();
    if (! nodeName.startsWith("#")) {
    s += ": " + nodeName;
    if (domNode.getNodeValue() != null) {
    if (s.startsWith("ProcInstr"))
    s += ", ";
    else
    s += ": ";
    // Trim the value to get rid of NL's at the front
    String t = domNode.getNodeValue().trim();
    int x = t.indexOf("\n");
    if (x >= 0) t = t.substring(0, x);
    s += t;
    return s;
    * Return children, index, and count values
    public int index(AdapterNode child) {
    //System.err.println("Looking for index of " + child);
    int count = childCount();
    for (int i=0; i<count; i++) {
    AdapterNode n = this.child(i);
    if (child.domNode == n.domNode) return i;
    return -1; // Should never get here.
    public AdapterNode child(int searchIndex) {
    //Note: JTree index is zero-based.
    org.w3c.dom.Node node =
    domNode.getChildNodes().item(searchIndex);
    return new AdapterNode(node);
    public int childCount() {
    return domNode.getChildNodes().getLength();
    // This adapter converts the current Document (a DOM) into
    // a JTree model.
    public class DomToTreeModelAdapter
    implements javax.swing.tree.TreeModel
    // Basic TreeModel operations
    public Object getRoot() {
    //System.err.println("Returning root: " +document);
    return new AdapterNode(document);
    public boolean isLeaf(Object aNode) {
    // Determines whether the icon shows up to the left.
    // Return true for any node with no children
    AdapterNode node = (AdapterNode) aNode;
    if (node.childCount() > 0) return false;
    return true;
    public int getChildCount(Object parent) {
    AdapterNode node = (AdapterNode) parent;
    return node.childCount();
    public Object getChild(Object parent, int index) {
    AdapterNode node = (AdapterNode) parent;
    return node.child(index);
    public int getIndexOfChild(Object parent, Object child) {
    AdapterNode node = (AdapterNode) parent;
    return node.index((AdapterNode) child);
    public void valueForPathChanged(TreePath path, Object newValue) {
    // Null. We won't be making changes in the GUI
    // If we did, we would ensure the new value was really new,
    // adjust the model, and then fire a TreeNodesChanged event.
    * Use these methods to add and remove event listeners.
    * (Needed to satisfy TreeModel interface, but not used.)
    private Vector listenerList = new Vector();
    public void addTreeModelListener(TreeModelListener listener) {
    if ( listener != null
    && ! listenerList.contains( listener ) ) {
    listenerList.addElement( listener );
    public void removeTreeModelListener(TreeModelListener listener) {
    if ( listener != null ) {
    listenerList.removeElement( listener );
    // Note: Since XML works with 1.1, this example uses Vector.
    // If coding for 1.2 or later, though, I'd use this instead:
    // private List listenerList = new LinkedList();
    // The operations on the List are then add(), remove() and
    // iteration, via:
    // Iterator it = listenerList.iterator();
    // while ( it.hasNext() ) {
    // TreeModelListener listener = (TreeModelListener) it.next();
    * Invoke these methods to inform listeners of changes.
    * (Not needed for this example.)
    * Methods taken from TreeModelSupport class described at
    * http://java.sun.com/products/jfc/tsc/articles/jtree/index.html
    * That architecture (produced by Tom Santos and Steve Wilson)
    * is more elegant. I just hacked 'em in here so they are
    * immediately at hand.
    public void fireTreeNodesChanged( TreeModelEvent e ) {
    Enumeration listeners = listenerList.elements();
    while ( listeners.hasMoreElements() ) {
    TreeModelListener listener =
    (TreeModelListener) listeners.nextElement();
    listener.treeNodesChanged( e );
    public void fireTreeNodesInserted( TreeModelEvent e ) {
    Enumeration listeners = listenerList.elements();
    while ( listeners.hasMoreElements() ) {
    TreeModelListener listener =
    (TreeModelListener) listeners.nextElement();
    listener.treeNodesInserted( e );
    public void fireTreeNodesRemoved( TreeModelEvent e ) {
    Enumeration listeners = listenerList.elements();
    while ( listeners.hasMoreElements() ) {
    TreeModelListener listener =
    (TreeModelListener) listeners.nextElement();
    listener.treeNodesRemoved( e );
    public void fireTreeStructureChanged( TreeModelEvent e ) {
    Enumeration listeners = listenerList.elements();
    while ( listeners.hasMoreElements() ) {
    TreeModelListener listener =
    (TreeModelListener) listeners.nextElement();
    listener.treeStructureChanged( e );
    }

    DocumentBuilderFactory can be configured to ignore white space.
    http://java.sun.com/j2se/1.5.0/docs/api/javax/xml/parsers/DocumentBuilderFactory.html#setIgnoringElementContentWhitespace(boolean)

  • How to get rid of all the blank empty white space at bottom of photoshop palettes?

    on a large screen the palettes can have big tall empty white spaces below the last imput.  Sometimes the corner size adjustment box is off the screen
    and I want to eliminate the empty space..
    Can I eliminate this extra blank space (without changing display resolution)?  Why is it there?

    When I take a screen shot     see attached    It shows the bottom of the, in this case, layers and channel, patettes but it is not actually visible or accessible on  my cinema 30" screen.  I know I can change the resolution so the size adjustment boxes can be reached and resize the white space away in that manner, but I like the resolution as is 2048 x1280 for my bad eyesight and continually resizing seems like wasted effort.  There is no purpose for the extra white space so I want to make it so the palettes only show what is in them.  Probably not possible?
    separate  issue:  can you make it so the tool bar is alway in the front?  Why should it ever be behind anything?

  • How to display trailing white space in spark label?

    I have to display trailing white spaces in spark label but its automatically truncating it.
    Any alternate way? Thanks!

    Thanks for the reply. But still not working

  • White space around image when doing Save for Web

    Say I draw a simple square in Illustrator CS6 then export it to a PNG using Save for Web. The preview shows 1px thick of white space on the right side. Sometimes it's on 2 sides or more.
    No other hidden elements are around the image. Clip to artboard in not clicked.
    Why does this happen and how do we get rid of it?

    For once I get to answer a post and say somehting good about align to pixel grid.
    Turn it on
    Your image will now align to the pixel grid
    Turn it off when not doing web work, or will drive you mad.

  • Conditional Build Tab for image leaves extra white space

    I've applied the "Print" Conditional Build Tag to an image in
    my online help. When I generate the help and view it in the
    browser, extra white space is inserted between the steps. For
    example, instead of the steps being:
    1.
    2.
    3. etc.
    They now look like this:
    1.
    2.
    3. etc.
    Why is there extra white space where the image used to be?
    Thanks in advance for your help. Using RoboHelp7 -- WebHelp.
    Bill

    Probably there is a paragraph break or a space that you can't
    see but is not enclosed in the conditional tag.
    Check the html code immediately before and after the tag.
    Harvey

  • Search for White space within strings

    create table emp_dtl
    (empname varchar2(23));
    Insert into emp_dtl values ('WAYNE');
    Insert into emp_dtl values ('JOSEPH KRUPP');     --------- has white space
    Insert into emp_dtl values ('YING ZONG LEE');    --------- has white space
    Insert into emp_dtl values ('COHEN');
    Insert into emp_dtl values ('MARIE');How can i search for empnames which has White space in it? From other OTN threads, I gathered that this has something to do with
    chr(32)But i don't know how to put this in LIKE operator.

    Hi,
    SELECT  *
    FROM    emp_dtl
    WHERE   REGEXP_LIKE (empname, '\s')
    ;will look for any kind of whitespace (including spaces, which are CHR (32)).
    It may be more efficient to specifically list all the different whitespace characters, and see if the string changes when you remove all of them:
    SELECT     *
    FROM     emp_dtl
    WHERE     empname != TRANSLATE ( empname
                           , 'x ' || CHR (9)     -- CHR (9)  = <tab>
                                          || CHR (10)     -- CHR (10) = <newline>
                                 || CHR (13)     -- CHR (13) = <return>
                           , 'x'
    ;Edited by: Frank Kulash on Jul 12, 2010 8:47 AM

  • Found 0 results for While browsing eBay, when I watch or bid on an item, and later view it again, many inches of white space appears before item appears. If I delete the clear recent history box, the pages will come up as they should for several times, th

    While browsing eBay, when I watch or bid on an item, and later view it again, many inches of white space appears before item appears. If I delete the clear recent history box, the pages will come up as they should for several times, then go back to a lot of extra white space. How can I prevent this? Thank you, Rick in English
    == This happened ==
    Every time Firefox opened
    == About a month ago

    As stated in 1.:
    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem.
    Obviously, it will not harm your computer provided you follow the instructions. However, if you don't post your results in the thread where you were given those instructions, then the person helping you cannot help you further. As he asks at the end, "please post the test results on Pastebin, then post a link here to the page you created."

  • How do i crop "out" a piece of image=ex: how it will look when its cut for a window. Crop a white space in image?

    How do i crop "out" a piece of image=ex: how it will look when its cut for a window. Crop a white space in image?

    I think this will help if you are using version 11 or 12.
    Make a selection with a selection tool of the area you want to remove.
    Example: rectangular marquee tool - make a rectangle.
    Use Select>Refine Edge:
    Use the View section of this dialog box to see a few views.
    If you need to refine the edge of the selection (smooth, feather, shift, etc.) you can do that in this dialog box.
    You may want to check the box about remembering your settings in case you need to come back to them.
    In the Output section, you can pick New Layer with Layer Mask and click OK.
    You should see the hole in your image.
    Kathy Keith
    @kathleenmadeline on Instagram
    (I teach Photoshop Elements classes)

  • Weird rectangular box replaced the white-space for san serif

    I opened up a pdf that used to have a normal san serif text, but now, it has little square boxes for every spacebar spaces. The text comes out good but it's the white spaces that come up in square characters. Most other fonts don't do this but some other ones do this as well. Here is a picture of it:
    http://i574.photobucket.com/albums/ss186/johnclee90/1212.jpg
    please help me.

    I meant to say InDesign and not pdf. The pdf output of the indesign long ago does not have any square boxes but if I try to export the same indesign into pdf, it has the square things showing up on the pdf as well.  Anyways, the sansserif might have already existed, but my actual use of the sanserif came along with an already made CS2 template (I have CS3)from my instructor which was using the font. Everything was fine and normal (as in no square boxes) until recently when I opened the file again.
    I checked the font folders in my windows system, and it has SansSerif, SansSerif Bold, SansSerif Bold Oblique, and SansSerif Oblique in truetype font just like any other font files in there.
    Also this is the original CS2 template that I work on from. When I first opened this a while ago, it didn't have the weird boxes.
    http://i574.photobucket.com/albums/ss186/johnclee90/111.jpg
    could it be that I've installed new fonts to my system since that time?

  • Less white space for Insert image

    Eliminate some vertical white space on the Insert Image window.
    Sometimes this large window runs off the bottom of my browser window.  I have to scroll down past all the vertical white spce to click on the insert image button.

    if all you need is have mapviewer render the style and place it next to your theme control, you can probablly just issue a regular map request with only 1 feature and specify the style to be used on that feature. For instance, if you just want to show the M.STAR marker style, you can issue a request containing only the center point and specify the render style for the center point as M.STAR. you can also specify the exact width/height you want for the final 'map'. Yes if you issue a legend-only request mapviwer adds white space to it and ignores the width/height attributes.
    finally, we will add your last two items into our wish list. thanks.

  • Java delimiter for multiple white space

    Hi
    Is there a delimiter for multiple spaces? Or is there a simple way to check for more than one space and then replace them with a single white space or another delimiter?
    Thanks
    Brian
    Edited by: borratt on Apr 2, 2008 5:18 AM

    borratt wrote:
    So StringTokenizer should not be used at all anymore?
    Basically I am reading in a file which is separated by spaces, but some of the names have a space in it.
    I can split most of it fine due to the numerical only value at the beginning and the bracket etc.
    1 john frank                              football (89)          456
    tennis (76)             59
    19 dennis the mennis                      cricket (83)           678
    rugby (123)            567
    It is not obvious to me what you are trying to do though if you are trying to split a line at points of more than one space then you just needString[] splitLine = line.split(" {2,}");

  • White space in parm files foils query for dp export

    Hi,
    The data pump QUERY option does very strange things with extra white space in parameter files.
    If I have any space or a tab between the table name and the colon e.g.
    QUERY=UTL_DATA_SYS.LOG_SYSTEM_ERROR :"WHERE 1=2"
    I get the following error:
    ORA-39001: invalid argument value
    ORA-31658: specifying a schema name requires a table name
    If I put the white space after the colon, it applies the filter to EVERY TABLE !!!! e.g.
    QUERY=UTL_DATA_SYS.LOG_SYSTEM_ERROR: "WHERE 1=2"
    . . exported "UTL_DATA_SYS"."SSO_AUDIT_LOG_ARCHIVE" 8.640 KB 0 rows
    . . exported "UTL_DATA_SYS"."LOG_SYSTEM_ERROR" 8.921 KB 0 rows
    . . exported "UTL_DATA_SYS"."APEX_META_DATA" 7.492 KB 0 rows
    . . exported "UTL_DATA_SYS"."SSO_AUDIT_LOG" 8.632 KB 0 rows
    . . exported "UTL_DATA_SYS"."LOG_APEX_ACTIVITY_ARCHIVE" 11.92 KB 0 rows
    . . exported "UTL_DATA_SYS"."LOG_APEX_ACTIVITY_PG_DAY_SUM" 18.06 KB 0 rows
    . . exported "UTL_DATA_SYS"."LOG_APEX_ACTIVITY_USR_WK_SUM" 9.054 KB 0 rows
    . . exported "UTL_DATA_SYS"."APEX_IR_COLUMN" 6.515 KB 0 rows
    . . exported "UTL_DATA_SYS"."APEX_ITEM_USE" 7.273 KB 0 rows
    . . exported "UTL_DATA_SYS"."ALL_WBT_TABLES" 9.617 KB 0 rows
    . . exported "UTL_DATA_SYS"."ALL_WBT_USERS" 5.25 KB 0 rows
    . . exported "UTL_DATA_SYS"."APEX_META_DATA_KEYWORD" 5.257 KB 0 rows
    . . exported "UTL_DATA_SYS"."APPLICATION_PARAMETER" 6.625 KB 0 rows
    . . exported "UTL_DATA_SYS"."A_APPLICATION_PARAMETER" 7.929 KB 0 rows
    . . exported "UTL_DATA_SYS"."STANDARD_ABBREVIATION" 5.242 KB 0 rows
    . . exported "UTL_DATA_SYS"."SYSTEM_LOG_LEVEL_DEF" 5.914 KB 0 rows
    . . exported "UTL_DATA_SYS"."APEX_APPL_DETAIL" 0 KB 0 rows
    . . exported "UTL_DATA_SYS"."APEX_OBJECT_REL" 0 KB 0 rows
    . . exported "UTL_DATA_SYS"."APEX_WBT_INVALID_REFER" 0 KB 0 rows
    Master table "SYSTEM"."SYS_EXPORT_SCHEMA_04" successfully loaded/unloaded
    If I get everything JUST RIGHT e.g.
    QUERY=UTL_DATA_SYS.LOG_SYSTEM_ERROR:"WHERE 1=2"
    I DO get the desired result
    Processing object type SCHEMA_EXPORT/POST_SCHEMA/PROCOBJ
    . . exported "UTL_DATA_SYS"."SSO_AUDIT_LOG_ARCHIVE" 402.1 MB 5121006 rows
    . . exported "UTL_DATA_SYS"."LOG_SYSTEM_ERROR" 8.921 KB 0 rows
    . . exported "UTL_DATA_SYS"."APEX_META_DATA" 188.5 MB 1472587 rows
    . . exported "UTL_DATA_SYS"."SSO_AUDIT_LOG" 82.19 MB 895951 rows
    . . exported "UTL_DATA_SYS"."LOG_APEX_ACTIVITY_ARCHIVE" 28.49 MB 177253 rows
    etc
    Is it unreasonable to ask Oracle to trim white space before it processes these commands? I really appreciate all the power of the data pump, but this is one area that some added work would be appreciated to reduce fragility and avoid unexpected behavior.
    Thanks
    Steve

    Sounds reasonable to file a bug.
    Dean

Maybe you are looking for

  • Last Active Payroll Record

    Hi, I am new to ABAP-HR. I am using logical database PNP to get payroll. But i want to get only the last active payroll for a personnel number. How to achieve this ? Is there any Macro for this ? Please guide on this. Thanks & Regards Ananya

  • Perspective zoom turns off after restart

    hello i have iphone 5s 8.0.2 and ipadmini 8.0.2 everything worked just fine untill i have upgraded to 8.0 with OTA update option. i Use perspective zoom for background on my lock screen and home screen. but after i reboot my iphone or ipad the zoom f

  • Two frames open

    hi, i have got a problem with a program i am developing, i have got a JFrame and one of the buttons opens up another JFrame. the problem i am having is that the second window does not open properly. The panel shows but all the information on it is ab

  • Sync mac to iphone

    help; old macbook pro but with Mountain Lion and iphone latest updates and itunes.  i just want my music library on my phone.  how please???

  • Problems with Win XP drivers on a Satellite A200-1FL (PSAE06E)

    Hi, I have problems with a WinXP 32bit installation (downgrade of vista 32bit): with the sound, with two pci devices and with the mass storage driver. Xp install some sound drivers: codec, imported or generic controller... I dont know,... but it does