How to reconstruct the thumbnails - bug ?

Hello.
I updated to iPhoto9
My Thumbnails doesnt correspond to my photos anymore.
I try to reconstruct the thumbnails, but in the Windows which opened when I start iPhoto by pressing the alt and cmd key, I obtain only the possibility to Cancel, not to reconstruct.
Any Idea ?
Thanks
http://images.forum-auto.com/mesimages/228078/Image%202.jpg23..jpg
Message was edited by: klawal
Message was edited by: klawal

Close iPhoto, delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your User/Library/Preferences folder, launch iPhoto and see if that helps. A long shot since it works OK in the English version but worth a try.

Similar Messages

  • How to reconstruct the missing parts list (co24)

    Dear All
    How to reconstruct the missing parts list (co24).by using report PPCOXPR1.?
    Rgds
    Pankaj Agarwal

    Hi Pankaj,
    You need to run the program "PPCOXPR1" using SE38. This program will create missing part index in RESB table.
    Hope this helps you, Reward your points.
    Regards,
    Prasobh

  • How to reconstruct the statistical cost of project stock?

    Hi, Experts,
    We added the statistical cost element of 90 category for project stock BS account.
    Now we find that some of the project stock don't have statistical cost,
    some of the project stock have statistical cost(Value type: WRTTP=11).
    How can we reconstruct the statistical cost of project stock to make it right?
    Thanks a lot in advance.
    Best Regards,
    Nansen

    Try running CJEN for your project. Make sure you remove the test run tick.
    Regards

  • How to move the Thumbnails & the photo caption to top in Galleria

    I am working on a click-able gallery using the coding found on jQuery Galleria 1.0b from
    http://galleria.aino.se/
    Similar coding can be found on here;
    http://monc.se/kitchen/146/galleria-a-javascript-image-gallery#comments
    I would like to move the thumbnails and the photo captions to the top, rather than having it at the bottom. Much apperciated any help. I cannot read coding as i am new to these things. My HTML coding as follows;
    <link href="test/galleria.css" rel="stylesheet" type="text/css" media="screen">
        <script type="text/javascript" src="test/jquery.min.js"></script>
        <script type="text/javascript" src="test/jquery.galleria.js"></script>
        <script type="text/javascript">
        $(document).ready(function(){
            $('.gallery_demo_unstyled').addClass('gallery_demo'); // adds new class name to maintain degradability
            $('ul.gallery_demo').galleria({
                history   : true, // activates the history object for bookmarking, back-button etc.
                clickNext : true, // helper for making the image clickable
                insert    : '#main_image', // the containing selector for our main image
                onImage   : function(image,caption,thumb) { // let's add some image effects for demonstration purposes
                    // fade in the image & caption
                    image.css('display','none').fadeIn(1000);
                    caption.css('display','none').fadeIn(1000);
                    // fetch the thumbnail container
                    var _li = thumb.parents('li');
                    // fade out inactive thumbnail
                    _li.siblings().children('img.selected').fadeTo(500,0.3);
                    // fade in active thumbnail
                    thumb.fadeTo('fast',1).addClass('selected');
                    // add a title for the clickable image
                    image.attr('title','Next image >>');
                onThumb : function(thumb) { // thumbnail effects goes here
                    // fetch the thumbnail container
                    var _li = thumb.parents('li');
                    // if thumbnail is active, fade all the way.
                    var _fadeTo = _li.is('.active') ? '1' : '0.3';
                    // fade in the thumbnail when finnished loading
                    thumb.css({display:'none',opacity:_fadeTo}).fadeIn(1500);
                    // hover effects
                    thumb.hover(
                        function() { thumb.fadeTo('fast',1); },
                        function() { _li.not('.active').children('img').fadeTo('fast',0.3); } // don't fade out if the parent is active
        </script>
        <style media="screen,projection" type="text/css">
        /* BEGIN DEMO STYLE */
        *{margin:0;padding:0}
        body{padding:20px;background:white;text-align:center;background:black;color:#bba;font:80% /140% georgia,serif;}
        h1,h2{font:bold 80% 'helvetica neue',sans-serif;letter-spacing:3px;text-transform:uppercase;}
        a{color:#348;text-decoration:none;outline:none;}
        a:hover{color:#67a;}
        .caption{font-style:italic;color:#887;}
        .demo{position:relative;margin-top:2em;}
        .gallery_demo{width:702px;margin:0 auto;}
        .gallery_demo li{width:68px;height:50px;border:3px double #111;margin: 0 2px;background:#000;}
        .gallery_demo li div{left:240px}
        .gallery_demo li div .caption{font:italic 0.7em/1.4 georgia,serif;}
        #main_image{margin:0 auto 60px auto;height:438px;width:700px;background:black;}
        #main_image img{margin-bottom:10px;}
        .nav{padding-top:15px;clear:both;font:80% 'helvetica neue',sans-serif;letter-spacing:3px;text-transform:uppercase;}
        .info{text-align:left;width:700px;margin:30px auto;border-top:1px dotted #221;padding-top:30px;}
        .info p{margin-top:1.6em;}
        </style>
    </head>
    <body>
    <h1>Galleria Demo 01</h1>
    <div class="demo">
    <div id="main_image"></div>
    <ul class="gallery_demo_unstyled">
        <li><img src="test/img/flowing-rock.jpg" alt="Flowing Rock" title="Flowing Rock Caption"></li>
        <li><img src="test/img/stones.jpg" alt="Stones" title="Stones - from Apple images"></li>
        <li class="active"><img src="test/img/grass-blades.jpg" alt="Grass Blades" title="Apple nature desktop images"></li>
        <li><img src="test/img/ladybug.jpg" alt="Ladybug" title="Ut rutrum, lectus eu pulvinar elementum, lacus urna vestibulum ipsum"></li>
        <li><img src="test/img/lightning.jpg" alt="Lightning" title="Black &amp; White"></li>
        <li><img src="test/img/lotus.jpg" alt="Lotus" title="Fusce quam mi, sagittis nec, adipiscing at, sodales quis"></li>
        <li><img src="test/img/mojave.jpg" alt="Mojave" title="Suspendisse volutpat posuere dui. Suspendisse sit amet lorem et risus faucibus pellentesque."></li>
        <li><img src="test/img/pier.jpg" alt="Pier" title="Proin erat nisi"></li>
        <li><img src="test/img/sea-mist.jpg" alt="Sea Mist" title="Caption text from title"></li>
    </ul>
    <p class="nav"><a href="#" onclick="$.galleria.prev(); return false;">&laquo; previous</a> | <a href="#" onclick="$.galleria.next(); return false;">next &raquo;</a></p>
    </div>
    The CSS coding as follows;
    .galleria{list-style:none;width:200px}
    .galleria li{display:block;width:80px;height:80px;overflow:hidden;float:left;margin:0 10px 10px 0}
    .galleria li a{display:none}
    .galleria li div{position:absolute;display:none;top:0;left:180px}
    .galleria li div img{cursor:pointer}
    .galleria li.active div img,.galleria li.active div{display:block}
    .galleria li img.thumb{cursor:pointer;top:auto;left:auto;display:block;width:auto;height:auto}
    .galleria li .caption{display:block;padding-top:.5em}
    .galleria_main div{display:none;}
    .galleria_main div.active{display:block;}
    * html .galleria li div span{width:400px} /* MSIE bug */

    Looks like you are talking about taskbar, See:
    * http://www.sevenforums.com/tutorials/1066-taskbar-move-location-desktop-screen.html

  • How to eliminate the thumbnail picture from a .TIFF picture?

    I apologize but could not think of a more suitable forum to ask the question - if someone has an idea for a better place, I will appreciate.
    When I create a picture with my (Nikon) camera in the TIFF format, it appears that the picture file contains in addition to the full blown picture, a reduced version of the picture, something like a large thumbnail vrsion of the picture. I found it by trying to create a PDF file of the .TIFF file - Acrobat created a two page file, one with the full picture and one with the reduced picture. It looks that I can't tell the camera not to embbed the thumbnail version.
    So my question is, from someone who is familiar with the .TIFF file format, how to eliminate that thumbnail version from the .TIFF file. Must be somewhere (hopfully one) location in the file that when modifying it it eliminates the thumbnail picture from Acrobat's view into the .TIFF file.
    As to the question why not simply erase that undesired page from the PDF file - the answer is that I actually going to assemble many (hundreds) such pictures into one PDF file. Acrobat will put all those pictures such that each main picture will be followed by its own thumbnail and therefore I will have to select manually each single thumbnail page before erasing them, extremely tedious. If I could process it at the individual .TIFF file as describrd above, I could easily write a program that does this modification to all my .TIFF files with one invokation.
    Many thanks,
    David

    Try ExifTool
    http://www.sno.phy.queensu.ca/~phil/exiftool/

  • How to display the thumbnail view of the documents in Sharepoint Document Library

    Is there a way that we can have the thumbnail view of the documents that are uploaded in SharePoint Document Library. We have thumbnail feature in Picture Library but can we have the same in Document Library too. Documents includes Words,Excel,PDF.
    Any Suggestions Please 

    Hey Mike,
    Good post, I'd be curious to see if anyone has used the GD Picture SDK with SharePoint, maybe there would be some sample code.
    Hey Kukdai,
    Developing your own solution would potentially provide a better way to accomplish your task, but before setting out on that long road you may want to try the simple customization, it's less time consuming and it will help gauge your customer's interest and
    support.
    Also, there is a wealth of open source code for SharePoint available on CodePlex, you might want to check that out as well.  Here is the linK:
    http://www.codeplex.com/
    Also, here is an interesting project to consider for your task:
    http://enhancedpicture.codeplex.com/
    I hope that helps!
    Tom Molskow SharePoint Architect - If I solved the issue please propose my reply as the answer - Thanks!

  • How to locate the "11 Bug"

    Hello,
    This question Must be post again and again by many fellow , but they are so widely different each other .So , the core problem is :
    HOW TO LOCATE THE Point where the JVM crash
    so , if any one could give me a solution or say something about it ,I will feel thank very much ,thank you
    Envirament :
    RedHat 7.3, HP-NetServer 2000 Machine Tomcat 1.18
    Unexpected Signal : 11 occurred at PC=0x404528FC
    Function=array_addressing__5Parse9BasicTypeiPPC4Type+0x118
    Library=/usr/local/j2sdk1.4.0/jre/lib/i386/server/libjvm.so
    Current Java thread:
    Dynamic libraries:
    08048000-0804d000 r-xp 00000000 08:02 1090395 /usr/local/j2sdk1.4.0/bin/java
    0804d000-0804e000 rw-p 00004000 08:02 1090395 /usr/local/j2sdk1.4.0/bin/java
    40000000-40013000 r-xp 00000000 08:02 356953 /lib/ld-2.2.5.so
    40013000-40014000 rw-p 00013000 08:02 356953 /lib/ld-2.2.5.so
    40014000-40021000 r-xp 00000000 08:02 356951 /lib/i686/libpthread-0.9.so
    40021000-40028000 rw-p 0000d000 08:02 356951 /lib/i686/libpthread-0.9.so
    40029000-4002b000 r-xp 00000000 08:02 356966 /lib/libdl-2.2.5.so
    4002b000-4002c000 rw-p 00001000 08:02 356966 /lib/libdl-2.2.5.so
    4002c000-40494000 r-xp 00000000 08:02 1106859 /usr/local/j2sdk1.4.0/jre/lib/i386/server/libjvm.so
    40494000-4064c000 rw-p 00467000 08:02 1106859 /usr/local/j2sdk1.4.0/jre/lib/i386/server/libjvm.so
    40661000-40673000 r-xp 00000000 08:02 356970 /lib/libnsl-2.2.5.so
    40673000-40674000 rw-p 00012000 08:02 356970 /lib/libnsl-2.2.5.so
    40676000-406aa000 r-xp 00000000 08:02 357877 /usr/lib/libstdc++-2-libc6.1-1-2.9.0.so
    406aa000-406b6000 rw-p 00033000 08:02 357877 /usr/lib/libstdc++-2-libc6.1-1-2.9.0.so
    406b8000-406d9000 r-xp 00000000 08:02 356949 /lib/i686/libm-2.2.5.so
    406d9000-406da000 rw-p 00020000 08:02 356949 /lib/i686/libm-2.2.5.so
    406da000-406e3000 r-xp 00000000 08:02 1106857 /usr/local/j2sdk1.4.0/jre/lib/i386/native_threads/libhpi.so
    406e3000-406e4000 rw-p 00008000 08:02 1106857 /usr/local/j2sdk1.4.0/jre/lib/i386/native_threads/libhpi.so
    406e4000-406f5000 r-xp 00000000 08:02 1106867 /usr/local/j2sdk1.4.0/jre/lib/i386/libverify.so
    406f5000-406f7000 rw-p 00010000 08:02 1106867 /usr/local/j2sdk1.4.0/jre/lib/i386/libverify.so
    406f7000-4071a000 r-xp 00000000 08:02 1106868 /usr/local/j2sdk1.4.0/jre/lib/i386/libjava.so
    4071a000-4071b000 rw-p 00022000 08:02 1106868 /usr/local/j2sdk1.4.0/jre/lib/i386/libjava.so
    4071d000-40732000 r-xp 00000000 08:02 1106870 /usr/local/j2sdk1.4.0/jre/lib/i386/libzip.so
    40732000-40734000 rw-p 00014000 08:02 1106870 /usr/local/j2sdk1.4.0/jre/lib/i386/libzip.so
    40734000-40737000 r--s 00000000 08:02 749083 /home/wcm/trswcm/bin/commons-daemon.jar
    40737000-4073a000 r--s 00000000 08:02 749087 /home/wcm/trswcm/bin/tomcat-jni.jar
    4073a000-40741000 r--s 00000000 08:02 749088 /home/wcm/trswcm/bin/bootstrap.jar
    40741000-41dc0000 r--s 00000000 08:02 1106910 /usr/local/j2sdk1.4.0/jre/lib/rt.jar
    41e02000-41e19000 r--s 00000000 08:02 1106891 /usr/local/j2sdk1.4.0/jre/lib/sunrsasign.jar
    41e19000-41e88000 r--s 00000000 08:02 1106893 /usr/local/j2sdk1.4.0/jre/lib/jsse.jar
    41e88000-41e9b000 r--s 00000000 08:02 1106892 /usr/local/j2sdk1.4.0/jre/lib/jce.jar
    41fe6000-41fec000 r--s 00000000 08:02 308458 /usr/lib/gconv/gconv-modules.cache
    41fec000-41fed000 r--p 00000000 08:02 519174 /usr/lib/locale/zh_CN.gbk/LC_IDENTIFICATION
    41fed000-41fee000 r--p 00000000 08:02 519175 /usr/lib/locale/zh_CN.gbk/LC_MEASUREMENT
    41fee000-41fef000 r--p 00000000 08:02 519180 /usr/lib/locale/zh_CN.gbk/LC_TELEPHONE
    41fef000-41ff0000 r--p 00000000 08:02 519171 /usr/lib/locale/zh_CN.gbk/LC_ADDRESS
    41ff0000-41ff1000 r--p 00000000 08:02 519177 /usr/lib/locale/zh_CN.gbk/LC_NAME
    41ff1000-41ff2000 r--p 00000000 08:02 519179 /usr/lib/locale/zh_CN.gbk/LC_PAPER
    41ff2000-41ff3000 r--p 00000000 08:02 535395 /usr/lib/locale/zh_CN.gbk/LC_MESSAGES/SYS_LC_MESSAGES
    41ff3000-41ff4000 r--p 00000000 08:02 519176 /usr/lib/locale/zh_CN.gbk/LC_MONETARY
    41ff4000-41ff5000 r--p 00000000 08:02 519181 /usr/lib/locale/zh_CN.gbk/LC_TIME
    41ff5000-41ff6000 r--p 00000000 08:02 519178 /usr/lib/locale/zh_CN.gbk/LC_NUMERIC
    41ff6000-41fff000 r-xp 00000000 08:02 356986 /lib/libnss_files-2.2.5.so
    41fff000-42000000 rw-p 00009000 08:02 356986 /lib/libnss_files-2.2.5.so
    42000000-4212c000 r-xp 00000000 08:02 356947 /lib/i686/libc-2.2.5.so
    4212c000-42131000 rw-p 0012c000 08:02 356947 /lib/i686/libc-2.2.5.so
    42135000-423b6000 r--s 00000000 08:02 1106908 /usr/local/j2sdk1.4.0/jre/lib/charsets.jar
    443b6000-443b8000 r--s 00000000 08:02 1202039 /usr/local/j2sdk1.4.0/jre/lib/ext/dnsns.jar
    443b8000-443ba000 r--s 00000000 08:02 650694 /home/wcm/trswcm/common/lib/cdc.jar
    443ba000-443be000 r--s 00000000 08:02 650701 /home/wcm/trswcm/common/lib/jspsmart.jar
    443be000-443bf000 r--s 00000000 08:02 650710 /home/wcm/trswcm/common/lib/trswcm-setup.jar
    443bf000-443c0000 r--s 00000000 08:02 296284 /home/wcm/trswcm/webapps/MyChinabidding/WEB-INF/lib/redsoftFilter.jar
    7e753000-7e781000 r--p 00000000 08:02 519173 /usr/lib/locale/zh_CN.gbk/LC_CTYPE
    7e781000-7e850000 r--p 00000000 08:02 519172 /usr/lib/locale/zh_CN.gbk/LC_COLLATE
    7ed15000-7ed32000 r--s 00000000 08:02 1202038 /usr/local/j2sdk1.4.0/jre/lib/ext/sunjce_provider.jar
    7ed32000-7edd5000 r--s 00000000 08:02 1202040 /usr/local/j2sdk1.4.0/jre/lib/ext/localedata.jar
    7edd5000-7ede3000 r--s 00000000 08:02 1202041 /usr/local/j2sdk1.4.0/jre/lib/ext/ldapsec.jar
    7ede3000-7edfd000 r--s 00000000 08:02 650699 /home/wcm/trswcm/common/lib/jdom.jar
    7edfd000-7ee00000 r--s 00000000 08:02 650707 /home/wcm/trswcm/common/lib/smtp.jar
    7ef00000-7efe0000 r--s 00000000 08:02 650713 /home/wcm/trswcm/common/lib/xerces.jar
    7efe0000-7f0b5000 r--s 00000000 08:02 650712 /home/wcm/trswcm/common/lib/xalan.jar
    7f0b5000-7f18d000 r--s 00000000 08:02 650709 /home/wcm/trswcm/common/lib/trswcm.jar
    7f18d000-7f1b3000 r--s 00000000 08:02 650711 /home/wcm/trswcm/common/lib/trswcmx.jar
    7f1b3000-7f1c7000 r--s 00000000 08:02 650686 /home/wcm/trswcm/common/lib/servlet.jar
    7f1c7000-7f200000 r--s 00000000 08:02 748994 /home/wcm/trswcm/common/lib/mssql/msbase.jar
    7f200000-7f20c000 r--s 00000000 08:02 748993 /home/wcm/trswcm/common/lib/mssql/mssqlserver.jar
    7f20c000-7f212000 r--s 00000000 08:02 748992 /home/wcm/trswcm/common/lib/mssql/msutil.jar
    7f212000-7f331000 r--s 00000000 08:02 650705 /home/wcm/trswcm/common/lib/ojdbc14.jar
    7f331000-7f33d000 r--s 00000000 08:02 650695 /home/wcm/trswcm/common/lib/activation.jar
    7f33d000-7f382000 r--s 00000000 08:02 650702 /home/wcm/trswcm/common/lib/mail.jar
    7f382000-7f3b8000 r--s 00000000 08:02 650708 /home/wcm/trswcm/common/lib/soap.jar
    7f3b8000-7f3f4000 r--s 00000000 08:02 650696 /home/wcm/trswcm/common/lib/FTPProtocol.jar
    7f3f4000-7f3f9000 r--s 00000000 08:02 650698 /home/wcm/trswcm/common/lib/jdbcpool.jar
    7f3f9000-7f894000 r--s 00000000 08:02 1202841 /usr/local/j2sdk1.4.0/lib/tools.jar
    7f894000-7f8b3000 r--s 00000000 08:02 650704 /home/wcm/trswcm/common/lib/mm.mysql-2.0.14-bin.jar
    7f8b3000-7f8b8000 r--s 00000000 08:02 650685 /home/wcm/trswcm/common/lib/naming-factory.jar
    7f8b8000-7f8bd000 r--s 00000000 08:02 650687 /home/wcm/trswcm/common/lib/commons-logging-api.jar
    7f8bd000-7f8c4000 r--s 00000000 08:02 650688 /home/wcm/trswcm/common/lib/naming-common.jar
    7f8c4000-7f8ce000 r--s 00000000 08:02 650689 /home/wcm/trswcm/common/lib/naming-resources.jar
    7f8ce000-7f8e5000 r--s 00000000 08:02 650690 /home/wcm/trswcm/common/lib/commons-collections.jar
    7f8e5000-7f8f6000 r--s 00000000 08:02 650691 /home/wcm/trswcm/common/lib/jasper-runtime.jar
    7f8f6000-7f8fd000 r--s 00000000 08:02 650700 /home/wcm/trswcm/common/lib/jms.jar
    7f8fd000-7f8ff000 r--s 00000000 08:02 650715 /home/wcm/trswcm/common/lib/jdbc2_0-stdext.jar
    7fa00000-7fab0000 r--s 00000000 08:02 650692 /home/wcm/trswcm/common/lib/ant.jar
    7fab0000-7fadd000 r--s 00000000 08:02 650693 /home/wcm/trswcm/common/lib/jasper-compiler.jar
    7fadd000-7faf7000 r--s 00000000 08:02 650697 /home/wcm/trswcm/common/lib/imap.jar
    7faf7000-7fafb000 r--s 00000000 08:02 650706 /home/wcm/trswcm/common/lib/pop3.jar
    7fafb000-7fafe000 r--s 00000000 08:02 650716 /home/wcm/trswcm/common/lib/jta-spec1_0_1.jar
    7fafe000-7fb00000 r--s 00000000 08:02 797088 /home/wcm/trswcm/server/lib/servlets-common.jar
    7fc00000-7fc26000 r--s 00000000 08:02 650703 /home/wcm/trswcm/common/lib/mailapi.jar
    7fc26000-7fc47000 r--s 00000000 08:02 650714 /home/wcm/trswcm/common/lib/xml.jar
    7fc47000-7fc4f000 r--s 00000000 08:02 650717 /home/wcm/trswcm/common/lib/sax.jar
    7fc4f000-7fc66000 r--s 00000000 08:02 797075 /home/wcm/trswcm/server/lib/commons-digester.jar
    7fc66000-7fd1a000 r--s 00000000 08:02 797076 /home/wcm/trswcm/server/lib/catalina.jar
    7fd1a000-7fd40000 r--s 00000000 08:02 797077 /home/wcm/trswcm/server/lib/tomcat-util.jar
    7fd40000-7fd47000 r--s 00000000 08:02 797092 /home/wcm/trswcm/server/lib/commons-logging.jar
    7fd47000-7fd8c000 r--s 00000000 08:02 797078 /home/wcm/trswcm/server/lib/mx4j-jmx.jar
    7fd8c000-7fd90000 r--s 00000000 08:02 797079 /home/wcm/trswcm/server/lib/servlets-manager.jar
    7fd90000-7fd94000 r--s 00000000 08:02 797080 /home/wcm/trswcm/server/lib/catalina-ant.jar
    7fd94000-7fda4000 r--s 00000000 08:02 797081 /home/wcm/trswcm/server/lib/tomcat-jk.jar
    7fda4000-7fdb8000 r--s 00000000 08:02 797085 /home/wcm/trswcm/server/lib/commons-beanutils.jar
    7fdb8000-7fdcc000 r--s 00000000 08:02 797086 /home/wcm/trswcm/server/lib/tomcat-jk2.jar
    7fdcc000-7fddb000 r--s 00000000 08:02 797089 /home/wcm/trswcm/server/lib/tomcat-coyote.jar
    7fddb000-7fde1000 r--s 00000000 08:02 797087 /home/wcm/trswcm/server/lib/servlets-webdav.jar
    7fde1000-7fde7000 r--s 00000000 08:02 797090 /home/wcm/trswcm/server/lib/tomcat-warp.jar
    7fde7000-7fde9000 r--s 00000000 08:02 797091 /home/wcm/trswcm/server/lib/servlets-invoker.jar
    7fde9000-7fdf2000 r--s 00000000 08:02 797093 /home/wcm/trswcm/server/lib/tomcat-http11.jar
    7fdf2000-7fdfa000 r--s 00000000 08:02 797094 /home/wcm/trswcm/server/lib/jakarta-regexp-1.2.jar
    7fdfa000-7fdff000 r--s 00000000 08:02 797096 /home/wcm/trswcm/server/lib/servlets-default.jar
    7ff00000-7ff08000 r--s 00000000 08:02 797095 /home/wcm/trswcm/server/lib/commons-modeler.jar
    7ffcb000-7ffe7000 r--s 00000000 08:02 296267 /home/wcm/trswcm/webapps/MyChinabidding/WEB-INF/lib/commons-beanutils.jar
    7ffe7000-7fffc000 r--s 00000000 08:02 296269 /home/wcm/trswcm/webapps/MyChinabidding/WEB-INF/lib/commons-dbcp.jar
    7fffc000-80000000 r--s 00000000 08:02 296271 /home/wcm/trswcm/webapps/MyChinabidding/WEB-INF/lib/commons-fileupload.jar
    80100000-80131000 r--s 00000000 08:02 296268 /home/wcm/trswcm/webapps/MyChinabidding/WEB-INF/lib/commons-collections.jar
    80131000-8014a000 r--s 00000000 08:02 296270 /home/wcm/trswcm/webapps/MyChinabidding/WEB-INF/lib/commons-digester.jar
    8014a000-80175000 r--s 00000000 08:02 296272 /home/wcm/trswcm/webapps/MyChinabidding/WEB-INF/lib/commons-lang.jar
    80175000-8017d000 r--s 00000000 08:02 296273 /home/wcm/trswcm/webapps/MyChinabidding/WEB-INF/lib/commons-logging.jar
    8017d000-80187000 r--s 00000000 08:02 296274 /home/wcm/trswcm/webapps/MyChinabidding/WEB-INF/lib/commons-pool.jar
    80187000-80191000 r--s 00000000 08:02 296275 /home/wcm/trswcm/webapps/MyChinabidding/WEB-INF/lib/commons-resources.jar
    80191000-80197000 r--s 00000000 08:02 296276 /home/wcm/trswcm/webapps/MyChinabidding/WEB-INF/lib/commons-services.jar
    80197000-801a2000 r--s 00000000 08:02 296277 /home/wcm/trswcm/webapps/MyChinabidding/WEB-INF/lib/commons-validator.jar
    801a2000-801b2000 r--s 00000000 08:02 296278 /home/wcm/trswcm/webapps/MyChinabidding/WEB-INF/lib/jakarta-oro.jar
    801b2000-801d2000 r--s 00000000 08:02 296279 /home/wcm/trswcm/webapps/MyChinabidding/WEB-INF/lib/jdom.jar
    801d2000-801f0000 r--s 00000000 08:02 296280 /home/wcm/trswcm/webapps/MyChinabidding/WEB-INF/lib/junit.jar
    801f0000-801fb000 r--s 00000000 08:02 296281 /home/wcm/trswcm/webapps/MyChinabidding/WEB-INF/lib/mailmanager.jar
    801fb000-801ff000 r--s 00000000 08:02 296287 /home/wcm/trswcm/webapps/MyChinabidding/WEB-INF/lib/upload.jar
    80400000-8051f000 r--s 00000000 08:02 296282 /home/wcm/trswcm/webapps/MyChinabidding/WEB-INF/lib/ojdbc14.jar
    8051f000-80543000 r--s 00000000 08:02 296283 /home/wcm/trswcm/webapps/MyChinabidding/WEB-INF/lib/org.jar
    80543000-805ba000 r--s 00000000 08:02 296285 /home/wcm/trswcm/webapps/MyChinabidding/WEB-INF/lib/struts.jar
    805ba000-805c0000 r--s 00000000 08:02 296831 /home/wcm/trswcm/webapps/MyChinabidding/WEB-INF/lib/trade.jar
    805c0000-80630000 r--s 00000000 08:02 296288 /home/wcm/trswcm/webapps/MyChinabidding/WEB-INF/lib/webmacro.jar
    8093c000-80957000 r-xp 00000000 08:02 308320 /usr/lib/gconv/GBK.so
    80957000-80958000 rw-p 0001a000 08:02 308320 /usr/lib/gconv/GBK.so
    80960000-809d7000 r--s 00000000 08:02 748880 /home/wcm/trswcm/temp/jar_cache46152.tmp (deleted)
    809d7000-809e8000 r-xp 00000000 08:02 1106873 /usr/local/j2sdk1.4.0/jre/lib/i386/libnet.so
    809e8000-809ea000 rw-p 00010000 08:02 1106873 /usr/local/j2sdk1.4.0/jre/lib/i386/libnet.so
    809ea000-809f4000 r-xp 00000000 08:02 356994 /lib/libnss_nisplus-2.2.5.so
    809f4000-809f5000 rw-p 00009000 08:02 356994 /lib/libnss_nisplus-2.2.5.so
    809f5000-809f8000 r-xp 00000000 08:02 356983 /lib/libnss_dns-2.2.5.so
    809f8000-809f9000 rw-p 00002000 08:02 356983 /lib/libnss_dns-2.2.5.so
    80c23000-80c31000 r-xp 00000000 08:02 356998 /lib/libresolv-2.2.5.so
    80c31000-80c32000 rw-p 0000e000 08:02 356998 /lib/libresolv-2.2.5.so
    Local Time = Wed Jul 23 09:51:24 2003
    Elapsed Time = 2430
    # HotSpot Virtual Machine Error : 11
    # Error ID : 4F530E43505002D5
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Server VM (1.4.0_03-b04 mixed mode)

    uninstall JRE, then get it installed again !!!

  • How to reconstruct the right order of  jobs in org unit

    Please, could you help me to determinate, where is saved order of jobs and units in Organizational Structure?
    I'm using HRP1000 for definition of objects and HRP1001 for connections between them. But I can't determinate the right sort order of jobs on the same level in an org unit.
    Thanks for help.
    Dasa

    Hi Dasa
    The relation order is stored at the field <b>"PRIOX"</b> of the 1001 record.
    Best regards...
    *--Serdar

  • Instead of all the fancy gear and hot, hip, up-to-the-minute--HOW ABOUT FIXING the MAJOR BUGS in THUNDERBIRD? The geeky answers provided by the forum don't wor

    Slow to load, abysmally slow to move a message to "Sent", Frequent errors moving composed mail from "Drafts", In almost constant conflict with Time-Warner RoadRunner--frequent errors involving timing out during sending.
    A BIG issue with me is the inability to move my Address Book entries to another mail program or another device. Once you're a Thunderbird person, you ain't going nowhere else, fur sure, fur sure!

    ''re:Also when I do get a message moved to "sent" and go back to read it--''
    Is this an IMAP mail account?
    If yes it is IMAP, check your server settings:
    * Tools > Account Settings > Copies & Folders for imap mail account.
    * Select: 'Place a copy in'
    * Select; 'Other' and the 'Sent folder on the imap mail account.
    note the 'Sent' folder on the server might be called 'Sent Items' or similar.
    Re Archives, Drafts and Templates:
    If you want to use the folders on the server...
    * Select: 'Other' and the Archives folder on the imap mail account
    * Select: 'Other' and the Drafts folder on the imap mail account
    * Select: 'Other' and the Templates folder on the imap mail account
    note: some people like to store their Archives in Local Folders.
    So you would need to create an 'Archives folder in Local Folders and choose 'Other' and 'Archives' fodler on Local Folders.
    click on OK to save changes to Account Settings.
    Have you performed all the suggested 'housework' on your folders to reduce their size?

  • I get a blank page when I open a new tab and would lie to have the thumbnails back - HOW?

    Firefox ver. 16.0.2
    Win 7
    I have tried the suggestions I find on the web.
    Your support page says:
    "The Firefox New Tab page shows pictures of the sites you visit frequently. Sometimes, some or all of these images are not displayed. We'll explain why that happens and how to get them back when it's possible."
    No I don't get any pictures at all when I open a new tab - It's blank, but I click on the following link:
    https://support.mozilla.org/en-US/kb/thumbnails-on-new-tab-page-are-missing
    I click on the link to follow instructions and end up here:
    https://support.mozilla.org/en-US/kb/new-tab-page-show-hide-and-customize-top-sites
    I click on this link: "The images of my top sites are gone - how do I get them back?"
    and end up here:
    https://support.mozilla.org/en-US/kb/new-tab-page-show-hide-and-customize-top-sites#w_the-images-of-my-top-sites-are-gone-how-do-i-get-them-back
    and end up here:
    See The thumbnails on the new tab page are missing - how to get them back.
    I click on the link for information and end up..... were I started.
    So - Could someone be nice and explain how I get the thumbnails back?!
    Because I refuse to use IE, but considering Opera..... Please advice!

    You can change this in Firefox's about:config preferences editor.
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the filter box, type or paste '''newtab''' and pause while the list is filtered
    (3) Double-click the '''browser.newtab.url''' preference and enter the desired value:
    ''(i) Page thumbnails (default)''
    about:newtab
    ''(ii) Blank tab''
    about:blank
    ''(iii) Built-in Firefox home page''
    about:home
    ''(iv) Any other page''
    full URL to the page
    Press Ctrl+t to open a new tab and verify that it worked. Fixed?

  • How can I increase the thumbnail size when using Safari to upload an image to a website?

    I upload many images to multiple websites and when using Safari to upload these images, the thumbnails are so small I can barely make out what the image is. I can easily figure out how to increase the thumbnail size when viewing them in Finder and set the default to my liking, but I cannot seem to find a way to do this in Safari. The last topic I saw on this was form 2013 and have not seen any update. Is there a way to do this?

    Delete all unused, invisible layers.
    Sometimes zip compression is better than jpg compression (in the pdf output settings). Zip is lossless, and works better with non gradient colour or no images.
    Flattening the image before you save it to pdf can reduce the file size if you are using jpg compression.
    Post a preview of your pdf and we can comment further on how to reduce the file size.

  • Bridge CS5...thumbnails.  How can I make the thumbnails larger?

    I can easily make my preview larger but cant seem to find anything to tell me how to make the thumbnails larger so they are easier
    to see.  Any suggestions?

    In the lower right corner there is a slider that will change the size of the thumbnails.

  • Once I fix the thumbnail pictures in iPhoto, how do I make them stay fixed.  Everytime I turn the computer back on iPhoto goes directly back to having 1 picture for all thumbnails.

    I have been having problems with the thumbnail pictures in iPhoto.  It will typically show 1 picture for all thumbnails.  I have figured out how to repair the thumbnail pictures, but everytime the computer is shut down, the thumbnail pics revert back to 1 picture for all.

    With the amount of information you've provided it's impossible to offer a potential solution.  We can't see your computer so we need to know the details of your problem and setup, i.e.:
    what version of iPhoto are you using?
    what system version are you running?
    how do you fix the thumbnailsd?
    what other fixes have you tried?
    where is your library located?
    did you apply any updates or upgrades just prior to the problem occurring?
    are you running a "managed" or "referenced" library?
    what type of Mac?
    how much free space on your boot drive?
    OT

  • How to edit slideshow thumbnail bar

    Hi
    Does anyone know how to edit the thumbnail preview bar that is generated on the photo album slideshows. I know you have the choice to click on the two buttons between the "back to album" and "download" text to hide the bar, but I would far rather either not have it at all, or be able to set it not to be shown as the default.
    I've scoured here and the web, but cannot find an answer.
    Any help gratefully received
    cheers
    J

    Cyclosaurus as posted code for an HTML snippet to change the default style/mode of the slideshow in his post here: http://discussions.apple.com/thread.jspa?messageID=6272619&#6272619 . I couldn't find any post to remove the thumbnail tray however.
    You could use a flash based slideshow instead of Apples. Examples of them are here:
    SimpleViewer and Flash Album Exporter
    Flash Album Exporter Postcard and AutoViewer Slideshow Themes
    Jalbum
    Jalbum has over 100 different skins/themes you can choose from. The others are created via the Flash Album Exporter plugin for iPhoto.
    OT

  • How to set a thumbnail photo in Azure AD? Sync thumbnail photos between Exchange Online and Azure AD?

    We're interested in downloading the thumbnail photo for users in an O365 tenant using the REST API, but we're stumped regarding how to set a thumbnail photo for a user in Azure AD.  We haven't found a way to do it via the user interface and it doesn't
    appear to sync between Exchange Online and Azure AD.  The only sync reference we've been able to find is between Windows Server AD and Azure AD which is not applicable in our use case?
    Any pointers on how to get the thumbnail photo set?

    Greetings!
    You may use the sample (Malar has shared above) which helps how to query Azure AD using the Graph API, demonstrates additional REST functionality to Get and Set User Details, including thumbnail photos.
    Would like to add:
    http://matthewyarlett.blogspot.co.uk/2013/08/add-or-update-user-profile-picture.html
    You can use the AD module for PowerShell for getting / setting the AD user.
    Would like to re-iterate that there are constraints on the sizes and formats supported for the
    thumbnailPhoto Active Directory attribute. As a general guideline, keep your images to 96x96 pixels and under 10Kb, using JPG format.
    Thank you,
    Arvind

Maybe you are looking for