Printing distortion

I am having a problem printing cropped photos - if I take a standard file and crop it to say 4x6 - the picture on the computer screen is OK but the print is distorted. i.e. the faces are thinner showing that the picture is compressed horizontally.
Is there a way of maintaining the aspect ratio on a cropped photo and also when a portrait picture is cropped to landscape.
I am using Photoshop Elements 7 on Windows Vista and an HP 3210 All-in-One Printer

Resizing and cropping are not the same process.
Image>resize>image size brings up a dialog where you can resize, and if the image is resampled, distortion may ensue.
The crop tool is said, by some, to resample as well, although in many instances minor distortion is not noticed by the uninitiated..
The preferred way (for me) to crop is Image>crop.
If you have a 4x6" picture of a tree, landscape mode, and wish to display the tree in portrait mode, the sure way to avoid the issue is to select the tree with one of the selection tools, then copy/paste it on a canvas which is sized 4x6" portrait mode.
Interesting reading: http://kb2.adobe.com/cps/331/331327.html
I am sure that others will be along, as this topic is not all black and white.

Similar Messages

  • Script PDF output is printing distorted

    Hi,
    At the time of printing script output I have set Option paramter 'ITPO' to generate spool request.I sent this spool request PDF output to external mail by SP01. But when I download this PDF output form mail and print, priting quality gets distorted. Why this is happening? Please help how to overcome this issue.
    Regards

    Hi,
    Thanks for ur reply.
    What I deed and what I want is explained below:
    1. I have developed a script form and driver program which is used for invoice printing.
    2. Our client wants to send this invoice on external mail. What i deed for this that I am using the spool request which is created during the print of output.
    3. Then I am using transaction code SP01 to send spool PDF to external mail.
    4. This script PDF output is sent successfully on external mail as an attachment. User saves this PDF attachement and print on their printer.
    5. PROBLEM is when user open this attachment and prints this PDF, the printing gets distorted.
    Note: I have also used another way by function module and program, but the result is same, PDF attachemnt printing gets distorted. It is not the same as get printing through ZTCODE printing of this script.
      CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
        EXPORTING
          src_spoolid                    = SPOOLID
          NO_DIALOG                      = ' '
        DST_DEVICE                     =
        PDF_DESTINATION                =
      IMPORTING
        PDF_BYTECOUNT                  =
        PDF_SPOOLID                    =
        OTF_PAGECOUNT                  =
        BTC_JOBNAME                    =
        BTC_JOBCOUNT                   =
       TABLES
          PDF                            = PDF
      LOOP AT PDF.
        TRANSLATE PDF USING ' ~'.
        CONCATENATE gd_buffer PDF INTO gd_buffer.
      ENDLOOP.
      TRANSLATE gd_buffer USING '~ '.
      DO.
        it_mess_att = gd_buffer.
        APPEND it_mess_att.
        SHIFT gd_buffer LEFT BY 255 PLACES.
        IF gd_buffer IS INITIAL.
          EXIT.
        ENDIF.
      ENDDO.
    PERFORM process_email.
    FORM process_email.
      DESCRIBE TABLE it_mess_att LINES gd_recsize.
      CHECK gd_recsize > 0.
      PERFORM send_email USING p_email1.
    ENDFORM.
    FORM send_email USING p_email.
      CHECK NOT ( p_email IS INITIAL ).
      REFRESH it_mess_bod.
    Default subject matter
      gd_subject         = 'Subject'.
      gd_attachment_desc = 'Attachname'.
    CONCATENATE 'attach_name' ' ' INTO gd_attachment_name.
      it_mess_bod        = 'PDF Attachment'.
      APPEND it_mess_bod.
    it_mess_bod        = 'Message Body text, line 2...'.
    APPEND it_mess_bod.
    If no sender specified - default blank
      IF p_sender EQ space.
        gd_sender_type  = space.
      ELSE.
        gd_sender_type  = 'INT'.
      ENDIF.
    Send file by email as .xls speadsheet
      PERFORM send_file_as_email_attachment
                                   tables it_mess_bod
                                          it_mess_att
                                    using p_email
                                          'Example .xls documnet attachment'
                                          'PDF'
                                          gd_attachment_name
                                          gd_attachment_desc
                                          p_sender
                                          gd_sender_type
                                 changing gd_error
                                          gd_reciever.
    ENDFORM.
    FORM send_file_as_email_attachment tables it_message
                                              it_attach
                                        using p_email
                                              p_mtitle
                                              p_format
                                              p_filename
                                              p_attdescription
                                              p_sender_address
                                              p_sender_addres_type
                                     changing p_error
                                              p_reciever.
      DATA: ld_error    TYPE sy-subrc,
            ld_reciever TYPE sy-subrc,
            ld_mtitle LIKE sodocchgi1-obj_descr,
            ld_email LIKE  somlreci1-receiver,
            ld_format TYPE  so_obj_tp ,
            ld_attdescription TYPE  so_obj_nam ,
            ld_attfilename TYPE  so_obj_des ,
            ld_sender_address LIKE  soextreci1-receiver,
            ld_sender_address_type LIKE  soextreci1-adr_typ,
            ld_receiver LIKE  sy-subrc.
    data:   t_packing_list like sopcklsti1 occurs 0 with header line,
            t_contents like solisti1 occurs 0 with header line,
            t_receivers like somlreci1 occurs 0 with header line,
            t_attachment like solisti1 occurs 0 with header line,
            t_object_header like solisti1 occurs 0 with header line,
            w_cnt type i,
            w_sent_all(1) type c,
            w_doc_data like sodocchgi1.
      ld_email   = p_email.
      ld_mtitle = p_mtitle.
      ld_format              = p_format.
      ld_attdescription      = p_attdescription.
      ld_attfilename         = p_filename.
      ld_sender_address      = p_sender_address.
      ld_sender_address_type = p_sender_addres_type.
    Fill the document data.
      w_doc_data-doc_size = 1.
    Populate the subject/generic message attributes
      w_doc_data-obj_langu = sy-langu.
      w_doc_data-obj_name  = 'SAPRPT'.
      w_doc_data-obj_descr = ld_mtitle .
      w_doc_data-sensitivty = 'F'.
    Fill the document data and get size of attachment
      CLEAR w_doc_data.
      READ TABLE it_attach INDEX w_cnt.
      w_doc_data-doc_size =
         ( w_cnt - 1 ) * 255 + STRLEN( it_attach ).
      w_doc_data-obj_langu  = sy-langu.
      w_doc_data-obj_name   = 'SAPRPT'.
      w_doc_data-obj_descr  = ld_mtitle.
      w_doc_data-sensitivty = 'F'.
      CLEAR t_attachment.
      REFRESH t_attachment.
      t_attachment[] = it_attach[].
    Describe the body of the message
      CLEAR t_packing_list.
      REFRESH t_packing_list.
      t_packing_list-transf_bin = space.
      t_packing_list-head_start = 1.
      t_packing_list-head_num = 0.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE it_message LINES t_packing_list-body_num.
      t_packing_list-doc_type = 'RAW'.
      APPEND t_packing_list.
    Create attachment notification
      t_packing_list-transf_bin = 'X'.
      t_packing_list-head_start = 1.
      t_packing_list-head_num   = 1.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.
      t_packing_list-doc_type   =  ld_format.
      t_packing_list-obj_descr  =  ld_attdescription.
      t_packing_list-obj_name   =  ld_attfilename.
      t_packing_list-doc_size   =  t_packing_list-body_num * 255.
      APPEND t_packing_list.
    Add the recipients email address
      CLEAR t_receivers.
      REFRESH t_receivers.
      t_receivers-receiver = ld_email.
      t_receivers-rec_type = 'U'.
      t_receivers-com_type = 'INT'.
      t_receivers-notif_del = 'X'.
      t_receivers-notif_ndel = 'X'.
      APPEND t_receivers.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
           EXPORTING
                document_data              = w_doc_data
                put_in_outbox              = 'X'
                sender_address             = ld_sender_address
                sender_address_type        = ld_sender_address_type
                commit_work                = 'X'
           IMPORTING
                sent_to_all                = w_sent_all
           TABLES
                packing_list               = t_packing_list
                contents_bin               = t_attachment
                contents_txt               = it_message
                receivers                  = t_receivers
           EXCEPTIONS
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                OTHERS                     = 8.
    Populate zerror return code
      ld_error = sy-subrc.
    Populate zreceiver return code
      LOOP AT t_receivers.
        ld_receiver = t_receivers-retrn_code.
      ENDLOOP.
    ENDFORM.
    Regards
    Dinesh Singh

  • Print distortions using f4400

    i just purchsed a new hp deskjet f4400. dowloaded driver for windows 7 and installation completed successfully.
    print output is distorted by horizontal streaks.  i've tried realigning cartridges, cleaning cartridges, restarting all components but printing is still a prob.  any ideas on the cause and resolution?

    i just purchsed a new hp deskjet f4400. dowloaded driver for windows 7 and installation completed successfully.
    print output is distorted by horizontal streaks.  i've tried realigning cartridges, cleaning cartridges, restarting all components but printing is still a prob.  any ideas on the cause and resolution?

  • My printer distort the text ! what to do ?

    When I 'Print Page' of a Firefox site - The text on the HP Printer comes DISTORTED ( the fonts are too small with large spaces between them.....)
    But - When I'll try the SAME Page with Chrome - It prints just fine.....
    Hey FireFox....what's going on ?
    David

    That problem was fixed like a year ago, before Firefox 4.0 was released in March. You are using an old Beta version, you should upgrade.
    http://www.mozilla.com/en-US/firefox/

  • PDF exported from InDesign is printing distorted, large

    This PDF is distributed to different people in our field to print, and for some reason, all of a sudden this month some are having issues when printing. I've attached what the PDF SHOULD look like (in JPEG format), and how it is printing for them. I cannot get the issue to replicated - every time I print it prints fine. I'm out of ideas!

    Unfortunately, you have no control over how users might butcher your piece. The printed page you show above was obviously printed in the wrong orientation, fit to a larger page size than was used...all entirely possible with Acrobat/Reader irrespective of how your PDF was constructed and deployed. Each user sets his/her own Acrobat/Reader view and print defaults. All you can do is send the PDF.

  • HP Photosmart 335 print distortion on using Image Zone Express

    Using HP Image Zone Express (the packaged software):
    When I select a photo to print in the VIEW area I see a correctly proportioned picture.
    When I press the PRINT tab the photo appears on the PRINT screen but it does not (and noticeably so) have the same print proportions as on the previous screen. The picture's length (height) increases in proportion to its width by an amount that makes a face in the picture appear thinner than it really is, .
    This would not normally be a problem except that when I print the picture, the resulting print also shows these wrong proportions!
    When I use Photoshop to print via this printer, the proportions are correct but the print quality is inferior.
    Among the actions I have performed to try and solve this problem are:
    I have checked and found that my printer drivers are up-to-date.
    I have tried putting all settings back to their defaults.
    I have restarted the printer, the software and the computer (I have not re-installed anything).
    I have tried printing smaller images than the paper size (10x15cm) with the same result. Strangely, when I do this, the printer tells me that the image is larger than the paper and some cropping will occur!
    An additional defect that possibly has nothing to do with the "proportions" problem is: The print "centering" (on the page) function does not seem to work at all.
    Any ideas or help with this proportions problem would be greatly appreciated.

    Hi Mel, yea if you've tried all the usual troubleshooting then it could be worth checking you have the latest SW & driver
    http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?product=3396080&cc=ie&dlc=en&lc=en&product=33960...
    Although I am an HP employee, I am speaking for myself and not for HP.
    Twitter: @Ciara_B_HP

  • HP Laserjet 1020 Shared printer problem

    Hello there I have here an HP Laserjet 1020 connected to one machine and shared to 3 others over the network.  Initially the printer works fine. All 3 computers that share the printer are able to print, as well as the host of the printer. However give it 3 days to a week and all of a sudden the printer is no longer able to print.  All shared computers and the host are able to see the printer, send a print job, but nothing happens.  The print queue is empty as if the job was completed. Occasionally if the host of the printer is restarted a print job will execute but very rarely. The only way that I have been able to fix this problem is to delete the printer from all computers. Reinstall drivers and share the printer on the host machine and share the printer on the following 3 computers.  This has become very time consuming as its been done 4 times over the last 3 weeks.  If it helps the host machine and 2 computers run XPSp3 and the 4th computer uses win7.  Any solution that will help fix this issue will be greatly appreciated. Thanks.

    Hi @rajahp ,
    I see by your post that the printer is printing distorted characters. Thanks for providing the screen shot. I can help you.
    It looks like a issue with the toner or possible a hardware issue with the printer or fuser.
    Inspect the toner cartridge for damage:
    1. Remove the toner cartridge from the product and verify that the sealing tape has been removed.
    2. Check the memory chip for damage.
    3. Examine the surface of the imaging drum on the bottom of the toner cartridge.
    CAUTION: Do not touch the roller (imaging drum) on the bottom of the cartridge.
    Fingerprints on the imaging drum can cause print-quality problems.
    4. If you see any scratches, fingerprints, toner on the drum or other damage on the imaging drum, replace the toner.
    5. If the imaging drum does not appear to be damaged, rock the toner cartridge gently several times and reinstall it. Print a few pages to see if the problem has resolved.
    I have provided a document for cleaning inside the printer and running a cleaning page, resetting the printer and checking the driver settings. Resolving Print Quality Issues.
    Try printing a document again.
    Let me know the results.
    What kind of paper are you using?
    Try another type of paper to see if you have the same results.
    Are you using Genuine HP Toner?
    What is the toner level?
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • HP LASERJET 1020 PLUS PRINTER PRINTING PROBLEM

    HI.
    I AM RAJA PAUL FROM INDIA, I HAVE A HP LASERJET 1020 PLUS PRINTER , NOW A DAYS   I AM FACE ING A PROBLEM , WHEN I AM GOING TO PRINT FROM THIS PRINTER , EVERY TIME PRITING LETEER SHOW  Distorted characters. WHAT I DO?   

    Hi @rajahp ,
    I see by your post that the printer is printing distorted characters. Thanks for providing the screen shot. I can help you.
    It looks like a issue with the toner or possible a hardware issue with the printer or fuser.
    Inspect the toner cartridge for damage:
    1. Remove the toner cartridge from the product and verify that the sealing tape has been removed.
    2. Check the memory chip for damage.
    3. Examine the surface of the imaging drum on the bottom of the toner cartridge.
    CAUTION: Do not touch the roller (imaging drum) on the bottom of the cartridge.
    Fingerprints on the imaging drum can cause print-quality problems.
    4. If you see any scratches, fingerprints, toner on the drum or other damage on the imaging drum, replace the toner.
    5. If the imaging drum does not appear to be damaged, rock the toner cartridge gently several times and reinstall it. Print a few pages to see if the problem has resolved.
    I have provided a document for cleaning inside the printer and running a cleaning page, resetting the printer and checking the driver settings. Resolving Print Quality Issues.
    Try printing a document again.
    Let me know the results.
    What kind of paper are you using?
    Try another type of paper to see if you have the same results.
    Are you using Genuine HP Toner?
    What is the toner level?
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Can I fix(set) the distorted object?

    I received a object to my client.
    It's distorted by 'Free Distort' effect in illustrator.
    I want distort path and all.
    = I want distort object irrevocably.
    Because of my plotter(big printer) cannot cognize distorted object.
    When i print distorted object, it's printing as NOT distorted object.
    How can I fix(set) the distorted object?
    help me please. :-)

    Thank you so much. it's working

  • Digital fax saving, printing

    11/21/12
    I have my HP Officejet Pro 8500 All-In-One Wireless configured to save faxes as digital files to folder on my Dell Server.  However, when I try to view them, with the WIndows XP viewer, the faxes seem incomplete.  When printed, they are illegible.  Is there a way to change the format in which faxes are saved to server, to solve this problem?
    Tom Rosenfeld, MD

    I'm sorry, but there is no way to change the file format they save in. When you say the faxes seem "incomplete," do you mean the full fax isn't there, or is there some other distortion that's happening? Does anything else print distorted from the XP computer?
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • Creating PDF files from Quark causes font/image issues. PLEASE HELP.

    After creating a PDF file using Adobe Acrobat Professional (using the file>Export to PDF option) from QuarkXPress version 7.3, my client sees and prints distorted letters with various fonts and they even sometimes see lines where they shouldn't be. I don't see these issues on my end, even when I print the documents. For example, I may have a headline of four words, the top of the words are shifted to one side, or sometimes even the top half of the letters are in a different color. Please help soon before I lose my clients... or my mind. Thanks.

    We don't use Quark anymore, but I seem to remember that the export to pdf does not use Acrobat Distiller. It is Quark's own pdf maker. If the customer does have Acrobat Professional, then get them to print to the Adobe PDF 'printer' and seeif they get the same problem. They may need to open the Distiller app to set which output settings are used.

  • HP Photosmart 230

    Since upgrading to Tiger, I have lost the ability to print to my HP Photosmart 230. I see from other postings a few months ago that I am not the only one. The driver (even after reinstallation) fails to appear in the list of printer drivers available. Obviously, trying other HP Photosmart drivers causes my HP Photosmart 230 to print distorted pictures in the wrong format. Has anyone gotten an HP Photosmart 230 printer to work off of a Mac running Tiger level software?

    I am having the same problem. I already had Tiger installed on my computer. When I decided to upgrade to the new version of 3210 printer software, the HP people told me to use the uninstaller first, which I did. After uninstalling all my HP software, I then installed the new software (version 7.9). My printer was not in the list. So, I reinstalled my old software (version 7.4.2) and still did not see my printer listed. I've uninstalled, reinstalled, and worked with an Apple tech. person and the problem is still unresolved. We even repaired the permissions, etc. Help!

  • Need help diagnosing cause of printing issue w/ image distortion

    Hello, I'm looking for some expert advice for my print issue with image distortion (see above) on my files once setup and proofed by my printer.
    I have a large PSD background file out of photoshop (CMYK, 170mb psd) that is being placed into an InDesign document. No preflight errors, all correct SWOP cmyk settings, and I keep having issues where images distort on my printers proofs - they seem unable to explain the issue and can't offer any other suggestions beyond ("just try resaving/uploading again" which of course has an added fee with each upload...).
    The files are all fine on our end: on-screen, on our cmyk proofs, and our saved PDFs/packaged files. But everytime our printer opens these they seem to have these distorted image problems - scrambled images (almost as if there was a ghosted transparent image in the distorted area), strange lines (see above, and color distortion (usually greens and pinks, see above).
    Is this an issue with my settings/file formats? Maybe the issue lies on our printers end? I'll keep checking this throughout the day and provide quick answers to anyone who can help me get to the bottom of this.
    Adobe forums have been a huge help in years past so I decided this was by best bet for a resolution from those who know more than myself (or my printer), thanks for taking the time to help!
    - Ian

    Hello, I'm looking for some expert advice for my print issue with image distortion (see above) on my files once setup and proofed by my printer.
    I have a large PSD background file out of photoshop (CMYK, 170mb psd) that is being placed into an InDesign document. No preflight errors, all correct SWOP cmyk settings, and I keep having issues where images distort on my printers proofs - they seem unable to explain the issue and can't offer any other suggestions beyond ("just try resaving/uploading again" which of course has an added fee with each upload...).
    The files are all fine on our end: on-screen, on our cmyk proofs, and our saved PDFs/packaged files. But everytime our printer opens these they seem to have these distorted image problems - scrambled images (almost as if there was a ghosted transparent image in the distorted area), strange lines (see above, and color distortion (usually greens and pinks, see above).
    Is this an issue with my settings/file formats? Maybe the issue lies on our printers end? I'll keep checking this throughout the day and provide quick answers to anyone who can help me get to the bottom of this.
    Adobe forums have been a huge help in years past so I decided this was by best bet for a resolution from those who know more than myself (or my printer), thanks for taking the time to help!
    - Ian

  • When I make a Book in Aperture and print a PDF proof version, all the modified photos (marked with Badges) are totally distorted.  What is causing this? All other - non-modified photos - appear to be fine.

    When I make a Book using Aperture 3 and print a PDF proof version, all images that have been modified within Aperture are distorted in PDF form.  All other images appear ok.

    As if only the corrected layer would have remained on the photos.
    So the geometry of the pictures is correct - they are not skewed or something? Only the colors and intensities are wrong?
    . Only in printing when it is converted to PDF file some photos are unrecognizable.
    Is it the printed pdf or the pdf viewed on the screen? If it is the printed copy you need to fix your print settings.
    Does Aperture give a warning, that the high resolution images are not available?
    We had some cases of books not being able to be printed, and that was due to a broken reference to the original files. Only the book could not access the originals, all other parts of Aperture could. To check for this, try to add one more adjustment to one of the images in question. Is it possible? Are the edits reflected correctly in the pdf of the book?
    We were shooting with 3 cameras, Lumix5 shooting RAW, Cannon 100 shooting JPEG and SONY alfa850 shooting RAW.
    Have you tried to reprocess the raw of the edited images? (Photos > Reprocess Raw)
    Also try, to remove one of the images from the book and to add it again. That usually helps, if Aperture has lost the connection to the originals used in the book.
    If you no have done so already, repair (and if necessary rebuild) the Aperture library.
    See: Repairing and Rebuilding Your Aperture Library: Aperture 3 User Manual
    Regards
    Léonie

  • Color Distortion with Mac Lion, CS6, Epson R2880 printer

    When I had Snow Leopard, CS4 and Epson R2280, I got prints that looked like what was on the monitor.
    When I bought a new Mac which switched my operating system to Lion, and Adobe recommended  I buy CS5 which I did.  When I went to print, trying every setting imaginable, the color was too dark, distorted and lifeless.  I called support on January 23, 2012 and they have not solved the problem YET.
    I was very excited to try CS6.  I selected use CS4 profiles.
    I printed a PSD file using Printer controls setting, color matching, epson.  The results are marginally better.  The pictures do not come out as dark but yellows turn green and greens turn blue.  Blues are sligtly darker and reds are off- mostly darker.  I got the same results letting photoshop control the colors.  This lack or responsiveness to changes in commands is the same thing I encountered with CS5.  I also tried printing an unadjusted raw file and the color did not change.
    I know how to use the Epson R2880 so I chose the correct media and ink.
    When I print from Apples preview or iPhoto, the color is perfect.
    Given that Epson is a high quality photoprinter, Adobe should make it their business to be sure their product works with Epson.

    I too have a MacBook with Lion and an Epson R2880..I'm in the process of evaluating CS6 on the
    MAC platform after using PS and Premier Pro on Windows boxes since 1995; so far I'm
    very impressed with how CS6 runs under LION given the somewhat strained
    relationship between Apple & Adobe..but I digress..my first attempt at a print
    with Luster produced very distorted imagery compared to that of my Thunderbolt
    display (which I love BTW)..I recognize the distortion almost certainly
    that caused by either 1)an improperly selected printer driver in the dialoges or
    2)bad or clogged ink jets or 3)a printer driver not updated for my new hardware/software
    combo..in this case LION with CS6 (beta s/w)...now in my case its not #2 as I just
    printed the same tiff file with CS5 on my Windows machine perfectly; its also not #1 cause
    I checked & rechecked the matte settings...I suspect #3 is the culprit..I'll do some
    more troubleshooting with this and report back..
    Oh, BTW, soft proofing on my MAC TB display revelaed not distortions so even
    tho I have done no monitor calibrations on this display I have no reason to
    suspect thatas the culprit..

Maybe you are looking for

  • I'm looking for a program or app that can put my contacts (clients) on a map

    I would like to have an overview of all my contacts on a map. So I can locate for ex my clients. Is there an app that makes this possible?

  • Formatting Issues with SO10 text in Adobe forms

    Hi Everyone, I Have the below text maintained in SO10. "Thank you for choosing Enterprise.  We look forward to seeing you at 9:00 am on Monday, November 28, 2011.  This message is to confirm you have updated your reservation.  Following are the detai

  • "nested folders" error message

    When I use Disk Utility to "Verify Disk" (my iMac's internal hard drive), it says in red: "nesting of folders has exceeded the recommended limit of 100" . At the bottom it says in green "Volume passed verification," but under that in red it says "Vol

  • Cancelling phone services because account holder m...

    hi wondering if anyone can tell me how i would cancel all phone services on account holders account as account holder has been placed in a hospice tried cancelling the phone line and features at start of this month  didn't appear to acknowledge after

  • One doubt in smartforms

    Hi Group I have one doubt in smartforms. I have following requirement. I want to print 14 labels on one A4 size page using smartforms. Can somebody please tell me how to go about it. Please reply ASAP as it is a bit urgent requirement. Thanks & Regar