Problems with power manager and saving settings Gnome3

Hi guys,
I installed on my Arch Linux system two desktop environments: xfce4 und gnome-shell. On xfce4 anything is fine, but on gnome-shell some preferences were not saved. Especially the time (I'm living in Germany, and the System always shows local time + 1h) and the startup-applications which I setted with gnome-session-properites are saved but nothing happens on next startup (e.g. guake is in the list and is not started automatically).
An other point is that the desktop folder is not loaded (I setted it with gnome-tweak-tool), but when I manually start nautilus, it is shown.
The last point is the power manager. I'm working on laptop and the battery symbol is not shown. I can watch my battery status with executing 'acpi' but thats very annoying. Other components of the power manager are not working, too. The laptop turns off it's monitor, when nothing is done within approx. 10 minutes (I setted as well in the xfce power manager that the monitor should not be turned off as in the gnome-power-manager). I installed the gnome power manager simply with pacman -S gnome-power-manager. Just for you to know.
Thank you for reading this and hopefully you can help me...
pausch
PS: please do not mind my mistakes, i am german and do not natively speak english.
Last edited by pausch (2012-01-08 14:33:15)

pausch wrote:
@wonder
anything looks better now, i think gnome is not built to start that another way than starting gdm...
no, works fine with startx. you only need to add proper stuff in ~/.xinitrc like explained in the wiki.

Similar Messages

  • X60 - Screen flickers and screen shutoff - problem with power management or hardware failure?

    Hello everyone,
    this is one of the longest unsolved threads in Lenovo Forum. To keep a summary of the posts for new victims (as suggested by PDG in page 23, edited by me):
    Bottom line:  
    This is a video driver problem
    If you have XP and can, roll back to 4450 (I currently run with 4860 in XP without problems)
    If you have Vista you are basically screwed.  No one has posted any link to a functioning V32 driver.
    You can find a link to a backlevel XP driver on p.21 or thereabouts.
    {Windows 7, Linux} may or may not help. (no problems for me with Ubuntu 8,9 currently)
    LENOVO WILL NOT HELP.  Don't waste your time.  Lenovo will say its a hardware problem because that's all they know and charge you big bux to do basically nothing when you ship them your PC.
    This is the original entry:
    Hi,
    I always stay at the current level of available drivers with System Update.
    In the last days the screen starts to flicker / jiggle once in several minutes until suddenly the whole screen turns black and can't be reactivated. I then put the X60 into standby and it wake up right after. The screen is then turned on again...
    Its a 1706-AA7...
    I rolled back the graphics driver to an earlier version, didn't help. Does it look like some faulty power management? Or a potential HW issue?
    dsp
    UPDATE: this time the screen was totally light blue... same workaround: standby -> wakeup
    UPDATE2: I removed the driver completely and installed it manually from the driver matrix page. It took a couple of reboots. In between resolution was down to 640x480 with 4 bit. Not its working again without flickering...
    Was this a wrong driver pushed via System Update?
    Message Edited by dsp on 04-07-2008 07:01 AM
    Solved!
    Go to Solution.

    Hi,
    no - 2 video adapters are correct! You should not remove them. Read the Intel FAQ here.
    Strange - could it be that it also updated your video driver the same time? When I rolled back the video driver to a very old version, I never experienced the flicker again. No colorful blanks anymore.
    The Intel downloadpage offers a backlevel driver for the chipset;
    * Microsoft Windows* XP
    * Driver Revision: Production Version 14.32.3
    * Package: 43262
    * Graphics: 6.14.10.4906
    * HDMI Audio: 5.10.0.1030 But I don't know whether I should try. This release doesn't appear in the Thinkpad video driver history. Hopefully the bug will be acknowledged and they work for a fix. Where should bugs be reported, when they are not taken serious by the first level support?
    dsp
    Message Edited by dsp on 05-06-2008 01:19 PM

  • Problem with checkbox value and app.settings.getSetting()

    Hello everyone.
    I`ve got a problem with getting saved settings for checkbox.
    Saved settings doesn`t apply on checkbox value.
    It`s strange, but it always "true".
    So here piece of code:
    checkMe = 11;    //any value for the first time running
    if (app.settings.haveSetting("savea", "chck")) {                           
                          checkMe = app.settings.getSetting("savea", "chck");  // get saved value, else 11
                          alert("checkMe = "+checkMe)
                        if(checkMe == 11){
                            checkMe= false;   //if there is no saved settings, checkbox value will be false/ unchecked
                            alert("You run this script first time, so manual value will be 'false'")
                            }else{
                                checkMe = app.settings.getSetting("savea", "chck");     // if saved settings exist, get true or false
         alert("Yes, checkMe will = "+checkMe)       
    win.checkPanel.chkOne.value = checkMe;  /// checkbox value will equal saved checkMe
    var fff = win.checkPanel.chkOne.value;  // string for alert
    alert("aha! but checkbox value is  = " +fff+ "\n Why so?")     // here we`ve got always "true"
    win.checkPanel.chkOne.onClick  = function () {
        var path11 = win.checkPanel.chkOne.value;  //  checkbox value to variable
        app.settings.saveSetting("savea", "chck", path11);  //saving checkbox value
        alert("Saved this value - " + app.settings.getSetting("savea", "chck"))
    win.checkPanel.chkOne.value is always true.
    Can someone exmplain why and how to get rid of this static value?
    P.S. just in case, here is full code:
    function mainFun()
        this.windowRef = null;
    mainFun.prototype.run = function()
        /*----- UI -----*/
              var retval = true;
              var win = new Window("palette", "Check option", [150, 150, 460, 455]);
              this.windowRef = win;
              win.checkPanel = win.add("panel", [25, 150, 285, 265], "Checkbox");
              win.checkPanel.chkOne = win.checkPanel.add("checkbox", [10, 15, 125, 35], "Checkbox One");
              //win.checkPanel.chkTxtOne = win.checkPanel.add('edittext', [140, 15, 230, 35], '');
         win.quitBtn = win.add("button", [110,275,200,295], "Close");
    checkMe = 11;    //any value for the first time running
    if (app.settings.haveSetting("savea", "chck")) {                           
                          checkMe = app.settings.getSetting("savea", "chck");  // get saved value, else 11
                          alert("checkMe = "+checkMe)
                        if(checkMe == 11){
                            checkMe= false;   //if there is no saved settings, checkbox value will be false/ unchecked
                            alert("You run this script first time, so manual value will be 'false'")
                            }else{
                                checkMe = app.settings.getSetting("savea", "chck");     // if saved settings exist, get true or false
         alert("Yes, checkMe will = "+checkMe)       
    win.checkPanel.chkOne.value = checkMe;  /// checkbox value will equal saved checkMe
    var fff = win.checkPanel.chkOne.value;  // string for alert
    alert("aha! but checkbox value is  = " +fff+ "\n Why so?")     // here we`ve got always "true"
    win.checkPanel.chkOne.onClick  = function () {
        var path11 = win.checkPanel.chkOne.value;  //  checkbox value to variable
        app.settings.saveSetting("savea", "chck", path11);  //saving checkbox value
        alert("Saved this value - " + app.settings.getSetting("savea", "chck"))
              win.quitBtn.onClick = function() {
                  win.close();
        win.center();
              win.show();
              return retval;
    if(typeof(mainFun_unitTest) == "undefined") {
        new mainFun().run();

    Played around with different values, combinations...
    Doesn`t work too:
    checkMe = 111;    //any value for the first time running
    if (app.settings.haveSetting("333", "check")) {                           
                          checkMe = app.settings.getSetting("333", "check");
    alert(checkMe);
                    if(checkMe == 111){
                             win.checkPanel.chkOne.value= false;
                            }else{
                                if (checkMe != false){
                                win.checkPanel.chkOne.value= true;
                                }else{
                                win.checkPanel.chkOne.value= false;
    win.checkPanel.chkOne.onClick  = function () {
        var path11 = win.checkPanel.chkOne.value;
        var path12 = path11.toString();
        app.settings.saveSetting("333", "check", path12);
        alert("Saved value - " + app.settings.getSetting("333", "check"))

  • Creative Zen Micro 6GB/Problems with Power Switch and Firmw

    The power switch on my Zen Micro has died. I can't turn it on or off unless I 'jump start' it from a USB cable and leave it alone to go into idle shutdown. I've had this player just three weeks and this is happened and frankly I'm disgusted. But wait, my story get's worse:
    So before sending it back to Creative I thought that I should at least exhaust every possible cure. First on my list? A Firmware upgrade to v2.22.05. I downloaded the program and set about installing the new firmware but halfway through the process it hung and I had to end it prematurely. Now what I had was a ZM that apparently had v2.22.05 but was not being recognised at all by my computer. Media Explorer wasn't picking up on it and neither was WMP although strangely when I connect the device it's there in the Device Manager...
    So, check back with the website and it said to download an update for Mediasource and that should solve the problem. Downloaded the patch but then realised that I hadn't installed Mediasource on my computer (can't remember why I didn't though). Went back to the downloads page and downloaded Mediasource. Tried to install it but I can't. The reason? because my computer isn't detecting the ZM and I can't install it until it recognises that it's there.
    As a last resort I thought that I would try to use 'Rescue Mode'. Seemed simple enough, remove the battery and hold down the power switch. Then put the battery back in and wait for the rescue screen to come up. Seems easy enough. Oh wait, I don't have a working power switch.
    What I do have though, is a small piece of plastic and metal that I can't turn on, can't turn off, can't put any songs on, can't listen to, can't fix and can't be bothered with. I have a ?60 paperweight.
    Anyone at all have any idea what I should do? I just want to put it all in a box and send it back to Amazon with a request for a full refund or a threat to take them to the Small Claims Court.

    Although a failed power switch is not unknown, I only recall seeing two or three other cases of this. It's not common.
    If WMP isn't working with the device having v2 firmware something is wrong. Unfortunately this can be difficult to fix, but take a look here in the Zen FAQ at Nomadness.net.
    MediaSource won't detect the player if there's some issue e.g. WMP0 not detecting it. You can of course also try installing Zen Micro Media Explorer (Creative Zen Micro Media Explorer Web Update to be specific) which has MTP support.
    Are you are presumably under guarantee, and as you bought from an Internet store, it's best to return it direct to Creative. Contact Creative Support to arrange this.

  • Problem with Energy Management and One key Theater

    I have a Lenovo G560 laptop. Actually, I have first installed Windows 7 x64 on my lappy but it caused many problems so I again reinstall windows 7 32 bit. But now Energy Management and One key theater are not working at all.
    Is there any fix for it???

    As I understand you are unable to use OneKey Theater and Lenovo energy management.
    The installation of both OneKey Theater and Power Management are necessary for using OneKey Theater. Through "Start" à "All Programs" à "Lenovo", or "Start" à "Control Panel" à "Programs" à "Programs and Features", you can find out whether OneKey Theater has been installed.
    If it has been installed, you need to make sure the following two items has been started in “Start à Run à msconfig à Startup”
    After that, if OneKey Theater is still unable to be started, you can run it manually by double clicking "Onekey Studio" through "Local Disk(C" à "Program Files" à "Lenovo" à "OneKey Theater".
    If OneKey Theater has been started, you can see "Onekey Studio.exe" under the "Processes" tab of "Windows Task Manager".
    OneKey Theater can be download from the mentioned below web link.
    http://consumersupport.lenovo.com/in/en/driversdownloads/Drivers_Show_2651.html
    Lenovo energy management software can be download from the mentioned below web link.
    http://consumersupport.lenovo.com/in/en/driversdownloads/Drivers_Show_2604.html
    Best Regards,
    Tanuj
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution".! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Lenovo T60 Strange problems with 'power management/power guage'

    Guys
    Since doing a system update my battery guage keeps displaying a grey guage with 3 - inside and if you run the mouse of the icon it says "Battery Not Installed" then 1 minute later it goes green with 100%. Its so random all i can imagine is that there is a problem with the power mangement software, but i have uninstalled the new version and installed an older version but this again doesnt work
    I have tried to disable the PM driver from device manager and the Atmel TPM device but these do nothing
    I have heard that this was quite common but cant find a solution
    Can anyone help
    Regards
    This was found doing a google search
    I have a strange issue. I have a Lenovo T60 laptop and I am experiencing problems with the power management/power guage.
    It will often show the battery not installed (power gauge is a greyish-white color with dashed lines) or it shows a red X. It does not matter if I am on AC power or on Battery power, it will show the full range of power, battery level, not installed, or an error.
    I have searched Lenovo's site and I seem to remember seeing an FAQ about this, but now that I need it, I cannot find it.
    What can I check or do to stop this? While it is annoying, I am not sure if I am having a battery problem or not. I did check my battery on Lenovo's site to see if it was recalled and it is not.
    I do appreciate any help that any one can give me.
    Message Edited by iceman on 05-29-2008 05:05 PM
    Message Edited by iceman on 05-29-2008 05:05 PM

    Can anyone help?

  • Phantom device problem with Power Manager in Win7, look at the pics

    Hi All,
    I found a phantom "Powered Off" device in My Computer, see the following picture:
    http://img23.imageshack.us/img23/8097/mycomputeru.png
    It's probably related to the Power Manager (version 3.11a), because when i right-click on the device, i see the Launch Power Manager option:
    http://img691.imageshack.us/img691/7779/poweredoffproperties.png
    Clicking Power on or Eject does nothing.
    There are no devices missing in the Device Manager, and everything is powered and running.
    No errors or warnings in Event logs. No issues with Windows at all.
    Restarting Windows makes this dissapear.
    Any clues on what's this device?
    X200T 7449-EKU, Windows 7 Ultimate 64-bit.
    Note from Moderator:  Image(s) >50k converted to link(s).

    Aim better?
    W520: i7-2720QM, Q2000M at 1080/688/1376, 21GB RAM, 500GB + 750GB HDD, FHD screen
    X61T: L7500, 3GB RAM, 500GB HDD, XGA screen, Ultrabase
    Y3P: 5Y70, 8GB RAM, 256GB SSD, QHD+ screen

  • Problems with instance manager and bound items

    I'm having a problem with bound fields.
    I have made a form that uses the instance manager so i can add several products,
    i'm using a button to export all this to a XML file  via XML schema but for some reason when i preview the form
    i can add new instances without problems and the original instance works ok but the second instance and all instances after that changes when anything is changed in any of them, they are in other words linked.
    Removing the xml schema made it work like it's supposed to but how do i get it to work with the xml schema?

    It sounds like your XML schema may not be properly setup to reflect the unlimited number of instances.
    <xs:element name="products">
         <xs:complexType>
              <xs:sequence>
                   <xs:element name="product" maxOccurs="unbounded">
                        <xs:complexType>
                             <xs:sequence>
                                  <xs:element name="product">
                                       <xs:complexType>
                                            <xs:sequence>
                                                 <xs:element name="productName" type="xs:string"/>
                                                 <xs:element name="useCase" type="xs:string"/>
                                            </xs:sequence>
                                       </xs:complexType>
                                  </xs:element>
                             </xs:sequence>
                        </xs:complexType>
                   </xs:element>
              </xs:sequence>
         </xs:complexType>
    </xs:element>
    The element you wish to repeat should have a "maxOccurs" property that is greater than 1.  You should also make sure that your subform is properly linked to this element.

  • Problem with power supply and motherboard

    I got problem with the cpu.this is the 2nd time my cpu cannot on. It keeps on off. It look likes there is no enough power supply.Last time the cpu also keep restart n there was also problem with the speaker. The HP technician has changed the motherboard.got frustated coz im in high expection on the HP Products. The model itself has problem or only my cpu got problem? Really hope the HP can replace d new one to me rather than the cpu always get problems n stuck my work for 3 to 5 days just to wait the technician comes to solve the problem...Now i have to wait till monday...

    Hello @Nazlina,
    I have brought your issue to the attention of an appropriate team within HP. They will likely request information from you in order to look up your case details or product serial number. Please look for a private message from an identified HP contact. Additionally, keep in mind not to publically post (serial numbers and case details).
    If you are unfamiliar with how the Forum's private message capability works, this post has instructions.
    http://h30434.www3.hp.com/t5/First-Time-Here-Learn-How-to-Post-and-More/How-to-check-your-messages/t...
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • Software mirror problems with disk management and diskpart

    I have a small server. It was originally using a single 250GB drive and one partition. It was a Dynamic Disk. Using Acronis I successfully did a backup/restore of the system to a 1TB drive to provide for storage.
    I have two new same model Western Digital Blue standard format (512 sector) 1TB drives. One has the restored working system mentioned above. The other is empty. It is showing as a dynamic disk unallocated.
    I attempt to mirror the system by using disk management, right-click on system drive and select "Add Mirror", get and choose 2nd disk selection, and the system churns for a few seconds and returns error message about DiskMgt not having up-to-date
    info. I close and restart DiskMgt and get the same thing.
    I invoked DiskPart and executed Select Volume 0, ADD Disk=1, after a few seconds I received the same error message. 
      I have tried both of these methods numerous times. I ran chkdsk /f/r on the primary drive and retried with same results.
    Tom Fleischmann

    Hi Tim,
    à
    the system churns for a few seconds and returns error message about DiskMgt not having up-to-date info
    Would you please let me know the complete error message that you can get when mirror?
    Meanwhile, please refer to following thread and check if can help you.
    Windows
    7 Pro Mirror
    If any update, please feel free to let me know.
    Hope this helps.
    Best regards,
    Justin Gu

  • Problem occurring when opening and saving files in AI SC5 with Windows 7

    Hi, I ‘am a Graphic Designer and first time working in UAE Windows 7 is basically the only OS here. My PC is:
    HP Elite 7000
    Intel® Core™ i5 CPU 2.67GHz
    4GB RAM
    32-bit
    Now to the problem, not that knowledgeable in IT stuff so here goes:
    1. Problem occurring when opening and saving files in AI SC5 with Windows 7. (You will actually see a “Not Responding” word coming out while opening and saving files, whether small or large files)
    2. Locked layers occasionally are moved accidentally.(Working on multiple layers is normal so we need to lock it specially the once on top. But there are times I still manage to select locked layers)
    3. After typing and locking the text, pressing “V” for the arrow key shortcut is still added to the text that is locked. (After typing I lock the text layer with my mouse and Press “V” to activate the arrow key… yes the arrow key is activated but the text is still typing the actual keyboard pressed)
    I’ve only use the brand new PC and installer for a month now. Not sure if this is compatibility issues or something else I’m not aware of.
    Thanks in advance to people that will reply.
    Cheers!!!

    Well I’m still wondering if it is compatibility issues because I’m also having problem with Photoshop CS5. These 3 are all bought at the same time (PC, Illustrator and Photoshop installers). The problem I’m having in Photoshop is not that too important, every time I Ctrl+O to view files, all PSD are shown in white paper like icons, no preview, and saving as well.
    Or I just purchased a corrupted or pirated installers… Adobe updates are done every time I’m prompted.

  • Hi I have had problems with photo's and films going onto a 2010 Apple classic MP3.  Have managed to sort photos but it still refuses to copy the films purchased. It comes up with not copied cannot be played on this ipod.

    Hi have had problems with photo's and films going onto a 2010 Apple Classic mp3. Have managed to sort photo's but the films won't copy and comes up with message videos not copied cannot be played on this ipod

    razzbust wrote:
    ...but the films won't copy and comes up with message videos not copied cannot be played on this ipod
    Self explanatory.
    You could try creating an iPod version of the films.
    Use CTRL and B to display the Menu bar shown above. Alternatively, use the ALT key, followed by the F key, the W key and finally the I (eye) key - that's (menu)/File/Create New Version/Create iPod or iPhone version.

  • HT2341 When I first attempt to power on my MacBook Pro, the LED blinks but the MBP doesnt turn on. However when I try a second time the LED blinks but my Mac turns on. Is this a problem with the hardware and can it be fixed?

    When I first attempt to power on my MacBook Pro, the LED blinks but the MBP doesnt turn on. However when I try a second time the LED blinks but my Mac turns on. Is this a problem with the hardware and can it be fixed?
    Also, I apparently have to replace my battery. Could the problem have any relevance to a dead battery?

    Have you held the power button down for 10+ seconds?  That should turn it off.
    Ciao.

  • T430s Issues with Power Manager

    Just to note, I don't have the big issue with the DCC and FCC not matching up that seems to be plaguing many of the T430s users.  I do have a Panasonic battery, FYI.
    So I got my T430s late August and for the past few weeks, I've been noticing that I lose about 1% of battery a day even though it is plugged into AC.
    I also have a problem with the laptop not going into non-AC mode when I pull the adaptor out of the socket.  It remains on AC mode, which drains the battery more than it should be.  I have to physically go into the power manager and change it to a power saving mode for it to change down.  This doesnt happen all the time but it does happen quite frequently.  My default power setting is default "Power source optimized"
    My Power Manager firmware is 6.36 (I think this is the latest one)
    Anyone else having these issues? Any firmware upgrades that should fix this problem?

    'afternoon...
    Welcome to the community.
    Not sure if it will help out, but please check to be sure you also have the latest Power Management driver installed. You can find it in your driver matrix. I don't have the link immediately at hand or I would post it.
    Regards.
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество
    Community Resources: Participation Rules • Images in posts • Search (Advanced) • Private Messaging
    PM requests for individual support are not answered. If a post solves your issue, please mark it so.
    X1C3 Helix X220 X301 X200T T61p T60p Y3P • T520 T420 T510 T400 R400 T61 Y2P Y13
    I am not a Lenovo employee.

  • T430s not entering 30 Day Standby with Power Manager

    I have a T430s with Windows 7 Pro 64-bit that is not entering 30 Day Standby like it should. The issue seems to lie with Power Manager.
    Inside of Power Manager I have the 30 Day Standby option checked, just like I should, and it is also reflected in the BIOS setup as well. If I change the BIOS transition time for 30 Day Standby to "Immediately" and start Windows, but don't log in, and put the computer to sleep. It almost immediately wakes up and transitions into 30-day standby.
    Now I know that Power Manager has a "hard coded" setting of 3 hours, regardless of the BIOS setting. So after 3 hours, Power Manager will automatically wake up the computer like it would to transfer to 30-day standby, but it just goes back to normal sleep.
    Today while on battery, it did this twice (according to the Windows Event Log) Wake up, and go back to Sleep / Standby (S3). In the logs, the wake source is listed as "Unknown" when it goes back to sleep 10 or so seconds later is listed as "Application API".
    Like I said, I was running on battery, and I also went into device manager and unchecked anything I could think of that would have an option of "Allow this device to wake the computer".  I also disabled the Wake-on-LAN option for the LAN card.  Plus I had all USB devices unplugged, as well as no Ethernet cable in the LAN port anyway.  Plus it does transition to the 30-Day standby if I force the computer to sleep at the login screen before Power Manager is loaded.
    If anyone could help me get this resolved I'd really appreciate it!!
    EDIT: I just wanted to add I should have all driver / software updates as of Dec. 1 or so. I'm running Power Manager 6.63.1 and Power Management Driver 1.67.4.4.
    Solved!
    Go to Solution.

    I could not reproduce any problem with the following configuration:
    T430s
    BIOS 2.57
    All BIOS default settings
    Windows 7 64-bit
    Power Management Driver 1.67.4.4
    Power Manager 6.63.1
    I'm not sure what could cause this on your computer, but I would try the following things:
    Load BIOS default settings (enter BIOS F1 Setup, press F9 to load defaults, F10 to save & exit)
    Toggle the setting for 30 Day Standby in Power Manager.  Turn if off, reboot the computer, turn it on, reboot the computer.
    By the way, you can actually change the 3-hour timer by modifying registry.  There just isn't any option for it in the Power Manager GUI.
    HKLM\Software\Wow6432Node\Lenovo\PWRMGRV\Data\ISSC
    There's a value called "S3TimerForIFFS".  This is the number of minutes until 30 Day Standby Deep Sleep starts.  The default value is 180.  You can change it to any value 1 or greater.  This timer is not exact but should be within a few minutes.

Maybe you are looking for

  • I can't connect my iPhone to my home wi-fi network

    My new iPhone 3G sees my home network, but it doesn't accept my password, despite repeated tries. The password is correct. Any idea how I can make it work? Thanks.

  • Error in IR

    Hi, Everytime we post IR, there is always a difference (only in decimal) between the balance of the IR and the total PO amount.  So what we do is we put the difference in the Unplanned del costs under details tab.  The difference used to fall  in the

  • Trig etc functions on fractions?

    Fraction.java with trig methods? I've been playing with geospatial stuff for a while now, and I've been striking a lot of problems with the inherent inaccuracies of floating point number representations, especially in complex-calculated values. Here'

  • SMTP New mail appearing in two mailboxes

    When I receive new SMTP mail, it appears in both the Inbox folder, and in the All Mail folder located in the Gmail folder (along with Drafts, Sent Mail, Spam etc). I then have to view/delete/relocate (or whatever) the email in both folders every time

  • Re: Tecra A8-103 windows 7, no sound

    I installed Windows 7 32bit and sound not woking. The latest sound card driver for Windows 7 is already installed, but no sound from speakers. I was try: FN+ Esc and Sound Utility to Turn Mute Off After Upgrading to Vista, but it's not help. please h