VF31 is not printing invoices; it is printing only the list

In VF31 I get so far as to see the list of invoices I want to print displayed on the screen. When I execute the request, what prints out is what I'm seeing on the screen - just the list, plus another page of stats. The actual invoices do not print out. Please help!

hi, and thank you for your response!
I think i've got this figured out. Thank you.
Edited by: A1199704 on Aug 10, 2010 5:34 PM

Similar Messages

  • My boyfriend who has an iPhone 5 just had his phone stolen, he has an iCloud account with find my iPhone app downloaded but we do not have access to a computer only the safari on my iphone 4s, where do I need to go and what do I need to do to access his

    My bitfriend who has an iPhone 5 just had his phone stolen, he has an iCloud account with find my iPhone app downloaded but we do not have access to a computer only the safari on my iphone 4s, where do I need to go and what do I need to do to access his

    You need to download the free Find my iPhone application from the App Store.

  • WEBSITE PAGE NOT SHOWING UP IN IE9..ONLY THE BACKGROUND SHOWS UP..

    IN FIREFOX AND IE9, I'VE BEEN CREATING THIS SITE. HTML5. NOW, HERE I AM ALMOST DONE WITH THE SITE AND WHEN I DO THE MEDIA PAGE..... IT SEEMS TO ONLY SHOW THE BACKGROUND IN IE9..EVEN AFTER I DELETED IT.. THAT SPECIFIC PAGE (videos.html) IS ONLY DISPLAYING THE BACKGROUND. EACH PAGE I DO, I'VE TESTED THEM IN BOTH BROWSWERS..... KEEPING EVERYTHING THE SAME EXCEPT FOR THE CONTENT WITHIN THE ARTICLE....
    Here's the Code initially, I'm sure there are erros obviously so guys just help me and don't be rude, if you will. I appreciate it greatly.
    HERE'S WHAT IT LOOKS LIKE IN FIREFOX:
    HERE'S WHAT IT LOOKS LIKE IN IE9:
    HERE'S THE CODE:
    (IT'S NEAT IN DREAMWEAVER) BUT... I JUST COPIED AND PASTED IT ONTO HERE.
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="UTF-8">
    <meta content="DahJ" name="author">
    <meta content="DahJ, Derek, Alton Hill, Dahari, financial freedom, Designer DahJ, Mogul DahJ, Dahari Fashions, university, ministries, Salem, Dahj University, chancellor, business, success, successful, North Las Vegas, Derek, , Coach, mentor, Philanthropist, Best-Selling Author, Author, life-coach, life, " name="keywords">
    <meta content="DAHJ videos, photos, and blog: Official Website" name="description">
    <title>Media - DAHJ videos, photos, and blog: Official Website</title>
    <style type="text/css">
    <!--
    body {
        margin: 0;
        padding: 0;
        color: #000;
        background:url(Images/websitebackgroundhomee.jpg) repeat scroll 0 0;
        font-family: David;
        font-size: 15px;
        height:100%;
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
        padding: 0;
        margin: 0;
    h2, h4, h5, h6, p {
        margin-top: 0;
        padding-left: 15px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
        font-family: David;
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
        border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
        color: #42413C;
        text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
        text-decoration: underline;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
        text-decoration: none;
    /* ~~ This fixed width container surrounds all other blocks ~~ */
    .container {
        width: 960px;
        margin: 0 auto;
        border-radius: 5px;
        -moz-border-radius: 5px;
        -moz-box-shadow: 0 5px 3px 3px #7d7f7e;
        -webkit-box-shadow: 0 5px 3px 5px #7d7f7e;
        box-shadow: 0 5px 3px 3px #999;
        background-image: url(Images/contentbckgrnds/videocontent.jpg);
    /* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
    header {
        height: 520px;
        width: 960px;
        background-position: center;
        background-color: #000;
    h1 {
        font-family:Century Gothic;
        padding-left:11px;
        font-weight:lighter;
    h1 a:hover {
        color:#09F;
    /* ~~ These are the columns for the layout. ~~
    1) Padding is only placed on the top and/or bottom of the block elements. The elements within these blocks have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the block itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the block element and place a second block element within it with no width and the padding necessary for your design.
    2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a block set to float right). Many times, padding can be used instead. For blocks where this rule must be broken, you should add a "display:inline" declaration to the block element's rule to tame a bug where some versions of Internet Explorer double the margin.
    3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar blocks could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.
    4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the blocks around in the HTML source.
    .sidebar1 {
        float: right;
        width: 300px;
        background: #fff;
        padding-bottom: 10px;
    .content {
        padding: 0px 0;
        width: 960px;
        float: right;
        background-color: #FFF;
    /* ~~ This grouped selector gives the lists in the .content area space ~~ */
    .content ul, .content ol {
        padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
    /* ~~ The footer ~~ */
    footer {
        padding: 10px 0;
        position: relative;/* this gives IE6 hasLayout to properly clear */
        clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
        background-color: #CCC;
        background-image: url(Images/footer2.jpg);
    /*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
    header, section, footer, aside, nav, article, figure {
        display: block;
    aside {
    .homebutton{
        background: no-repeat scroll 0 0 transparent;
        height:65px;
        left:-1.2em;
        position:relative;
        top:-3.4em;
        width:172px;
        z-index:20;
    h3 {
        font:"Palatino Linotype", "Book Antiqua", Palatino, serif;
        font-size:small;
        padding-left:15px;
    /*   THIS IS MY FOOTER'S FONT AND TEXT   */
    address {
        font-style:Century Gothic;
        color:#FFFFFF;
        text-decoration:none;
        text-align:center;
        font-style:normal;
    address a:link {
        color:#0CF;
    address a:link, a:hover {
        color:#33CC33;
    /*   THIS IS MY SOCIAL MEDIA LINKS, TITLES, AND COUNTS..... FACEBOOK, TWITTER, YOUTUBE   */
    #socialmedia {
        list-style:none outside  none;
        display:block;
        margin:15px 145px 0px;
        position:relative;
    .twitter {
        display:inline;
        margin-left:135px;
    .facebook {
        display:inline;
    .youtube {
        display:inline;
        margin-left:135px;
    #socialmediatitles {
        list-style:none outside none;
        display:block;
        margin:15px 190px 5px;
        position:relative;
        font-family:Century Gothic;
        font-size:22px;
        color:#ffffff;
        width:800px;
    .twitterfollowers {
        display:inline;
        margin-left:160px;
        color:#ffffff;
    .twitterfollowers a:link {
        color:#ffffff;
    .facebookfans a:link {
        color:#ffffff;
    .youtubesubs a:link {
        color:#ffffff;
    .facebookfans {
        color:#ffffff;
        display:inline;
    .youtubesubs {
        display:inline;
        margin-left:135px;
        color:#ffffff;
    #socialmedianumbers {
        list-style:none outside none;
        display:block;
        margin:15px 185px 5px;
        position:relative;
        font-family:Century Gothic;
        font-size:30px;
        color:#ffffff;
        width:800px;
    .twittercount {
        display:inline;
        margin-left:150px;
        color:#ffffff;
    .twittercount a:link {
        color:#ffffff;
    .facebookcount a:link {
        color:#ffffff;
    .youtubecount a:link {
        color:#ffffff;
    .facebookcount {
        color:#ffffff;
        display:inline;
    .youtubecount {
        display:inline;
        margin-left:135px;
        color:#ffffff;
    div#voverlay {
        background:#FFF;
        display:none;
        height:480px;
        padding:35px;
        width:640px;
    div#voverlay .close {{
        cursor:pointer;
        height:35px;
        position:absolute;
        right:5px;
        top:5px;
        width:35px;
        background:#999;
    div#vcontainer {
        background: url("loading.gif") no-repeat scroll 50% 50% transparent;
        height:100%;
        left:0;
        top:0;
        width:100%;
    .videogallery {
        width:871px;
    .videogallery a {
        color:#333333;
        display:inline-block;
        font:12px/18px "Centurty Gothic";
        margin:3px;
        opacity:0.87;
        position:relative;
        text-align:center;
        text-decoration:none;
        veritcal-align: top;
        width:240px;
    .videogallery a img {
        border:medium none;
        display:block;
        margin:0;
    .videogallery span {
        display:block;
    .videogallery a.videolb {
        display:none;
    </style>
    <style media="screen,print,projection" type="text/css">
    #mediaxmedia{ height:823px; border:none;}
    </style>
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js">
    </script>
    <![endif]-->
    <link href="CSS/dropDown3.css" rel="stylesheet" type="text/css">
    <link rel="stylesheet" href="CSS/videolightbox.css" type="text/css" />
    <link rel="stylesheet" type="text/css" href="media_videolb/overlay-minimal.css"/>
    <script src="js/jquery.js" type="text/javascript"></script>
    <script src="js/swfobject.js" type="text/javascript"></script>
    </head>
    <body>
    <div class="container">
      <header></header>
      <!----START OF NAVIGATION MENU---->
    <div id="navMenu">
                        <ul>
                          <li></li>
                        </ul> <!-- end inner UL -->
                        <ul>
                          <li><a href="http://www.dahj.com/recent-activity">ACTIVITY</a></li>
                        </ul> <!-- end inner UL -->
                        <ul>
                          <li><a href="http://www.dahj.com/latest-news">NEWS</a></li>
                        </ul> <!-- end inner UL -->
                        <ul>
                          <li><a href="http://www.dahj.com/photogallery">MEDIA</a>
        </ul> <!-- end inner UL -->
                        <ul>
                          <li><a href="http://www.dahj.com/coaching">COACHING</a></li>
                        </ul> <!-- end main UL -->
                        <ul>
                          <li><a href="http://www.dahj.com/shop">SHOP</a></li>
                        </ul> <!-- end inner UL -->
                        <ul>
                          <li><a href="http://www.dahj.com/about">ABOUT</a></li>
                        </ul> <!-- end inner UL -->
                        <p><br class="ClearFloat" />
                        </p>
      </div>
      <!-- end navMenu -->
    <!--------START OF DAHJ HOME ICON------->
              <div class="homebutton">
                <a href="http://www.dahj.com"><img src="Images/websiteicons/bg_logo_new_0.png" width="172" height="61"></a>
            </div>
    <!-- END OF DAHJ HOME ICON BUTTON ------>
    <article class="content">
    <br>
    <!--------VIDEO CONTENT BEGINS HERE--------->
    <div id="voverlay">
        <a class="close"></a>
            <div id="vcontainer"></div>
    </div>
    <center>
    <!-- Start VideoLightBox.com BODY section -->
        <div class="videogallery">
            <a class="voverlay" href="http://vimeo.com/moogaloop.swf?clip_id=39862994&server=vimeo.com&show_title=1&show_byline= 1&autoplay=1" title="Hearing His Voice"><img src="Images/video thumbs/0.png" alt="Hearing His Voice" /><span></span></a>
            <a class="voverlay" href="http://vimeo.com/moogaloop.swf?clip_id=39862218&server=vimeo.com&show_title=1&show_byline= 1&autoplay=1" title="The Trust Fund from ManPower 2010"><img src="Images/video thumbs/1.png" alt="The Trust Fund from ManPower 2010" /><span></span></a>
            <a class="voverlay" href="http://vimeo.com/moogaloop.swf?clip_id=39861243&server=vimeo.com&show_title=1&show_byline= 1&autoplay=1" title="What He Put In You Then Will Work For You Now"><img src="Images/video thumbs/2.png" alt="What He Put In You Then Will Work For You Now" /><span></span></a>
            <a class="voverlay" href="http://vimeo.com/moogaloop.swf?clip_id=39031081&server=vimeo.com&show_title=1&show_byline= 1&autoplay=1" title="The Word 101 - Back to the Basics"><img src="Images/video thumbs/3.png" alt="The Word 101 - Back to the Basics" /><span></span></a>
            <a class="voverlay" href="http://vimeo.com/moogaloop.swf?clip_id=36932142&server=vimeo.com&show_title=1&show_byline= 1&autoplay=1" title="Tough Love - Pastor Sheryl Brady"><img src="Images/video thumbs/4.png" alt="Tough Love - Pastor Sheryl Brady" /><span></span></a>
            <a class="voverlay" href="http://vimeo.com/moogaloop.swf?clip_id=35261687&server=vimeo.com&show_title=1&show_byline= 1&autoplay=1" title="Just Calm Down - Pastor Sheryl Brady"><img src="Images/video thumbs/5.png" alt="Just Calm Down - Pastor Sheryl Brady" /><span></span></a>
            <a class="voverlay" href="http://vimeo.com/moogaloop.swf?clip_id=28674599&server=vimeo.com&show_title=1&show_byline= 1&autoplay=1" title="How to Seduce Proof Your Life"><img src="Images/video thumbs/6.png" alt="How to Seduce Proof Your Life" /><span></span></a>
            <a class="voverlay" href="http://vimeo.com/moogaloop.swf?clip_id=36249630&server=vimeo.com&show_title=1&show_byline= 1&autoplay=1" title="iHeart TPHND - Part 1"><img src="Images/video thumbs/7.png" alt="iHeart TPHND - Part 1" /><span></span></a>
            <a class="voverlay" href="http://vimeo.com/moogaloop.swf?clip_id=36666455&server=vimeo.com&show_title=1&show_byline= 1&autoplay=1" title="iHeart The Potter's House North Dallas - Part 2"><img src="Images/video thumbs/8.png" alt="iHeart The Potter's House North Dallas - Part 2" /><span></span></a>
            <a class="voverlay" href="http://vimeo.com/moogaloop.swf?clip_id=37080493&server=vimeo.com&show_title=1&show_byline= 1&autoplay=1" title="iHeart The Potter's House North Dallas - Part 3"><img src="Images/video thumbs/9.png" alt="iHeart The Potter's House North Dallas - Part 3" /><span></span></a>
            <a class="voverlay" href="http://vimeo.com/moogaloop.swf?clip_id=37535503&server=vimeo.com&show_title=1&show_byline= 1&autoplay=1" title="iHeart TPHND - Part 4"><img src="Images/video thumbs/10.png" alt="iHeart TPHND - Part 4" /><span></span></a>
            <a class="voverlay" href="http://vimeo.com/moogaloop.swf?clip_id=22007961&server=vimeo.com&show_title=1&show_byline= 1&autoplay=1" title="My grandson Jaden playing the drums"><img src="Images/video thumbs/11.png" alt="My grandson Jaden playing the drums" /><span></span></a>
    </div>
    <script src="js/jquery.tools.min.js" type="text/javascript"></script>
    <script src="js/videolightbox.js" type="text/javascript"></script>
    <!-- End VideoLightBox.com BODY section -->
    </center>
    <br>
    </article>
    <!----------------VIDEO CONTENT ENDS HERE------------------>
        <!-----------------NUMBERS BOTTOM ------------>
       <!-----------------END NUMBERS BOTTOM---------->
      <!-- end .content -->
      <footer>
      <br>
      <br>
      <!-----------START SOCIAL MEDIA ICONS---------->
    <div id="socialmedia">
        <div class="facebook">
            <a href="http://facebook.com/dahj"><img src="Images/websiteicons/icontexto-inside-facebook.png"></a>
        </div>
        <div class="twitter">
            <a href="http://twitter.com/officialdahj"><img src="Images/websiteicons/icontexto-inside-twitter.png"></a>
        </div>
        <div class="youtube">
            <a href="http://youtube.com/dahj"><img src="Images/websiteicons/icontexto-inside-youtube.png"></a>
        </div>
    </div>
    <!-------------END SOCIAL MEDIA ICONS------>
    <!-------------START OF SOCIAL MEDIA TITLES------------>
    <div id="socialmediatitles">
        <div class="facebookfans">
            <a href="http://facebook.com/dahj">FANS</a>
        </div>
        <div class="twitterfollowers">
            <a href="http://twitter.com/officialdahj">FOLLOWERS</a>
        </div>
        <div class="youtubesubs">
            <a href="http://youtube.com/dahj">SUBSCRIBERS</a>
        </div>
    </div>
    <!------------END OF SOCIAL MEDIA TITLES---------------->
        <address>
        <br>
        <br>
        ©2012 Copyright | <a href="http://dahj.com/privacy-policy">Privacy Policy/Your Privacy Rights</a> | <a href="http://dahj.com/terms-of-use">Terms of Use</a> | <a href="http://dahj.com/contact-information">Contact US</a> | <a href="http://dahj.com/feedback">Feedback</a>
        </address>
    </footer>
    <!-- end .container -->
    </div>
    </body>
    </html>

    I am not sure what's happening with IE9 (no live site) but I had real problems viewing your code in Live View - until I removed the HTML comment marked below. Basically your site was viewable in Design View but as soon a I hit Live view, it disappeared - much like IE9. See if removing the comment solves your issue.
    <style type="text/css">
    <!-- /*Remove this */
    body {
        margin: 0;
        padding: 0;
        color: #000;
        background:url(Images/websitebackgroundhomee.jpg) repeat scroll 0 0;
        font-family: David;
        font-size: 15px;
        height:100%;

  • I purchased several songs and they are not showing up in my purchased file. Tried to go online and re-download them but ITunes is not giving me option to download only the ones I am missing. It *****

    I contacted Itunes and they told me to go to my account and re-download the songs. I opened my account and found the recent purchases, but they are not recent, there are 250 songs in that list, how come? And ITunes didn't give me an option to download only the ones I am missing. I don't want to download 250 duplicate songs.
    The Itunes updates are worst each time, BTW, Just starting to get sick and tired of Mac and Apple and Itunes and all this complicated stuff because of your paranoia of people "stealing" songs, but in fact, who is going to download songs ilegally is going to do it anyway, So all you are doing is to make it difficult for honest people who actually buy the songs and can't have them. I reported the problem several times and didn't get any more answers. Hope this works before I disoute the charges of the songs I don't have.

    Hi samfergs,
    I'm not sure how the Purchased Playlist decides what to put into it, but if you want to see all of your purchased items, then you need to go to the iTunes Store, and on the right side, under Quick Links, click on Purchased.
    Then, click on the Music (or whatever other purchased items tab you want to look at). If you are looking at Music, click on All Songs, and then on "All" or "Not on this Computer" (depending on what you want to see).
    Cheers,
    GB

  • When searching the calendar in list view, appointments erlier than a few years could not be found after search. en appointment from 1974 could not be found although it appears in the list.

    When searching the calendar in list view, en appointmet erlier than a few years could not be find although the appointmet is listed in the List wiew ???,
    An appointment from 1974 could not be found, in SEARCH MODE, although it appears in the calendar.

    Pardon me for a moment while I (politely) rant in your general direction...
    This type of response is not just unhelpful—it is the antithesis of helpful.
    This is a support forum. Its purpose is helping to resolve people's problems. Sometimes those problems are going to require long explanations or lots of information. That either comes out in the original post or over the course of several back-and-forth replies; the former produces long posts but takes less time overall than the latter.
    If you don't have the patience to read through a long post, then just move on. Posting a "too long, didn't read" comment adds nothing beneficial to anyone. All it does is reveal that the person who made that comment thinks it's important to tell everyone that their attention span is too short for anything longer than a tweet.
    Yes, my post was long. Had you read it, you might have understood why it's so long. I'm trying to provide information that people searching these forums about this problem might find helpful. I did this because when I searched for info on this problem, I found lots of people with a similar problem, but no answers that went beyond "restore from backup". Since that advice wasn't the solution for me, I decided that more information might prompt someone with more knowledge and access than I have to investigate. Since you couldn't be bothered to read it, you clearly aren't the kind of person whose attention I was hoping to catch.
    Certainly I could have made the post shorter, but I think putting it into a narrative like this makes it easier to follow and provides a context that a terse recitation of bare facts does not. If you disagree, that's your prerogative, but please don't waste everyone else's time by posting a comment just to say that you didn't read it.
    I find it appalling that someone who's able to reach Level 6 on these support forums would post a "tldr" comment. That does not reflect positively on you or these forums.
    End of rant.

  • Overnight, text body of emails will not display for messages in inbox-only the from and to and a subject line displays. Draft messages in Ipad display fully. Inbox emials display fully on my main  Dell computer and my Iphone. Any ideas?  Duanekot

    Overnight, the taxt body of emails will not display for all messages in the inbox.  Only the From and To and a subject line display.  All messages in my Draft Mailbox display fully. Also, all emails in my Dell laptop and my Iphone display fully.  Any ideas?? Duanekot

    See if this helps .... Reset the iPad.
    Hold down on the sleep and home buttons at the same time for about 10 seconds until the Apple logo appears - ignore the red slider bar - let go of the buttons and let the iPad start up. Then check your emails.

  • Not syncing edited photos to ipod, only the originals !!!!!!????

    Photos edited in iPhoto, like sepia effect or any kind of parameters to improve the original photo are not sync to ipod with color display.
    The photos shown in ipod are the original, not the actual.
    In apple tv all the photos shown are the actual, i.e., are the edited photos.
    Can anyone tell me how to sync the actual photos to ipod ????
    thank you

    Can you test with your own iPod to see what I'm talking about ?
    Use one photo edited in iPhoto and then try to sync to your iPod.
    My own edited photos only sync to Apple TV. My iPod have only the originals not the actual photos(edited or not).
    I don't know if the problem is with ipod. It's a old one (iPod with color display).
    I already restore iPod and synced again all photos, but the problem persists.
    It was formated for windows for disk use. Now I formated for Mac to see what happens, but the problem is the same.
    Message was edited by: Pedro Santos

  • Want to get photo folder to dropbox; but the photo file is not in "Pictures.  Tried dragging for the list of photo folders to dropbox, but that didn't work.

    Want to get a photo folder to Dropbox.  Pgoto folder is not in "pictures" and dragging the photo folder from the list of iphoto folders did not work.

    I would be posting in the iPhoto forum where those experts are:
    https://discussions.apple.com/community/ilife/iphoto

  • TS2755 My IPad does not display (load) my email messages, only the titles

    My email does not fully load content of each message, only the titles or subject of each message appears. What is causing this to happen and what can I do to correct this problem?

    Try reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • Printing Invoice Dot Matrix Printer  in the paper size 9.5 x 11 inches

    Dear All, 
    Am using Pre-printed Stationery but I have a problem with  printing configuration for AR Invoice through Dot Matrix Printer in paper size 9.5 x 11 inches, when command to print the first page it print perfect but the continuation  is not start on the body of the contents but it start from the header of the pre-printed stationery  any one with experience on this please share with me.
    Regards
    Grayson

    hi,
    Have you customized PLD according to paper size ?
    Check whether you customized fields in start of report area ? If yes then it will be printed
    only on first page.
    Check for printer supported by B1 in below link
    [SAP Business One Best-Practice System Setup and Sizing document ]
    Jeyakanthan

  • How can i print all pages instead of only the first page using firefox

    How can i set firefox to print off my mac to my lexmark printer all pages i want. It is only printing the first page as of about 4 days ago
    == This happened ==
    Every time Firefox opened
    == about 4 days ago. it works ok on safari!

    Then duplicate that button to pages 3-23.
    To do that effectively go to Form Edit mode, right-click the button and select Duplicate Across Pages.

  • Photoshop elements 10 will not play uploaded video clips.  Only the sound for the clip is available.

    The clips are playable with Quicktime or Windows Media Player.

    BUSTER412 wrote:
    The clips are playable with Quicktime or Windows Media Player.
    You need Premier Elements 10 or 11 not photoshop elements.    Photoshop is for photos and general images; I doubt it can edit/play videos despite the core program elements are common to both applications.  They are marketed as joint programs by Adobe but most people opt for individual products AFAIK.

  • Email is not going to my Gmail website, only the phone

    I don't know why that is, I didn't change any settings, and this is a real problem for me with the way I make my living- I need to be able to access my emails through my computer!!! (though gmail's website) And because of what it's doing, I can't just forward the emails to myself.
    I was thinking about deleting the account and re-doing it, except now I have emails on my phone I absolutely can't lose.
    I'm using the Pixi, which I'm *this* close to smashing with a hammer. It's so drastically different than the Pre, which I loved. With the Pre, I was able to go into the account settings and say if I wanted to sync the accounts together, if I wanted messages I delete on the phone to be deleted on my email- but I go to do the same thing, and it seems I have no choice but to sync the accounts, and- it doesn't even sync since the phone is abducting the emails so they don't make it to the website for some strange reason.
    Any suggestions would be greatly appreciated! I'm in real trouble at the moment, and this has been going on about a day now.
    Post relates to: Pixi p120eww (Sprint)
    Edited to say - It seems to have sorted itself out- what a pain in the butt that was!

    Correction-
    If I forward the emails to myself, I can get them on the Gmail website, so, I'm not in as much trouble as I thought- however, I get about 30-40 emails a day that I need to access from my computer, sooooo- it's still going to be a bit of a pain!
    lol-

  • One of my keys won't depress as easily as it should.  I have not tried cleaning it yet, but only the bottom of the key will depress.

    My B key on my macbook pro is not typing correctly.  The top half of the key barely goes down as I type.  I have not tried cleaning it yet, but would cleaning it help?

    Hi daslofmastah,
    Delete the song from your iTunes library and re-download it:
    In the iTunes Store click on the Music tab, then on Purchased under Quick Links on the right. Click on Music>Songs>All Songs>Not in My Library, and find the song you just deleted. You should see a cloud on the right-hand side - click on it to re-download.
    Cheers,
    GB

  • HT1766 Can an iCloud backup not belong to you but appear on the list of backups you can choose to restore from?

    Recently I removed my SIM from my 4S and after some time I realized that the Viber messages along with some other content was gone. Someone told me that this was a security mechanism. I tried to restore the missing content by completely resetting my iPhone and restoring from an earlier iCloud backup. Now, here comes the weird part, the backups listed were indeed from my device but the Apple ID that the phone asked me to confirm in order to proceed with the media restore wasn’t mine. How can this be? Does this mean that iCloud was compromised and someone got access to my account? What’s the implications of this? Are iCloud backups encrypted, or do I have to change every single password and authenticator access that was on my phone? Anyone encountered the same issue?

    Cancel this question.  I went into my pictures and there they were. Uhhhh DUH!!!
      Gotta love iCloud!!!  Thanks guys for putting up with my silly question!  At least I gave some of you a good laugh.  Have a great day and thanks for letting me play awhile in here!!!

Maybe you are looking for

  • How to enhance standard collective Search Help VMVM

    Hey Expert, Any pointer to enhance the standard search help VMVM with custom search option will be highly appriciated. Thanks in advance, Sayak

  • F110 and ff_5 double entry

    hi, 1) may i know what is the double entry posting when executing f110? dr creditor cr bank clearing? 2) when do bank recon ff_5 the double entry is dr bank clearing cr main bank? please help to clarify. thanks

  • SAP Netweaver   BI Upgrade

    Hi Everybody My question is about the Add-in or Standalone installations, I have upgraded our DEV & QA from BW3.1 to BI 7, the Abap & The Java stack are located on the same server, SAP calls it Option 1. For the production system, I am thinking to im

  • MDB listening to a Oracle AQ, holding ADT messages...

    Hi ! I'm trying to set a MDB to listen for incoming messages on an Oracle AQ. When I created the queue, I specified that the queue should contain payload of type ADT. I'm using Bea Weblogic server 8.1 sp4 and Oracle 10.2.0. The creation of the connec

  • We have version mac os x 10.6.8

    We downloaded facetime on our imac and we got the icon on our dock and clicked on it and the box came up with our picture.  We entered our apple id that we've always used and it took forever and came back saying, could not sign in please check your n