During the JFrame resize, unable to call mylogic.How to know JFrame rezing?

{font:Arial}{size:10pt}Hi
In my project i came across an issue. In that I had a JFrame (with FlowLayout) added with 24 JButtons (Its appearence will be similar as JToolbar). On this JFrame i called pack(). When i try to resize the JFrame, its componentResize() listener will not be called every time, instead it is calling only when its resizing complete.
I am looking for a solution, that will rearrange JButtons (as specified Column/Row wise) during the JFrame resize. Can any body help me why componentResize() is not calling, during the resize. Tell me all alternate solutions. Pls help me.
Waiting for your reply
{size}{font}

Can any body help me why componentResize() is not calling, during the resizeBecause its not very efficient to layout the frame every time you move the mouse 1 pixel. So by default this behaviour is turned off. I think you can turn in on by adding the following at the start of your program:
Toolkit.getDefaultToolkit().setDynamicLayout(true);

Similar Messages

  • I have change my phone language to english. but the phone shows chinese language in the internet pages and with call details. how to change it. why is this occuring?

    i have change my phone language to english. but the phone shows chinese language in the internet pages and with call details. how to change it. why is this occuring?

    If the phone is not unlocked, let's say for example it is locked to another carrier such as at&t, when you put in the Tmobile SIM in, the phone would complain about the SIM.
    Does your phone do that? If yes, then the party that sold you the iPhone4S (if you purchased it from another person) may have not done the unlocking properly, and that may explain why Tmobile is insisting on the phone being locked.
    If you purchased your iPhone4S new from Apple, did you pick Tmobile, or did you choose unlocked?
    If you picked the Tmobile choice, then it should come up ready to use.
    If you picked the unlocked choice, then you would need to visit Tmobile to purchase a nano-SIM and usually they should be more than willing to help you, since you're paying for their service.
    But as you have indicated, this phone is under AppleCare, so if it doesn't work with a supposedly good Tmobile SIM, the quickest way to fix this is to get a replacement phone. When we troubleshoot we always try the least time consuming methods first.
    You may have noticed it, that a good number of unfortunate uses of the iPhone4S have had their wifi become strangely disabled after upgrade to iOS7. Your situation is the reverse, your wifi is useable but not your cellular network.
    In the mean time, you can apply for a Google Voice account (see http://www.google.com/voice), and obtain a free North American telephone number. You can then download one of many free Google Talk applications. Set it up, and you will be able to call and receive phone calls using your wifi. This would be just for the transition period before you get a useable phone.
    Google voice provides average voice quality calls to and from US & Canada numbers for free for 1 hour per call. You can use this as a temporary work around while you are waiting for your replacement phone.
    Cheers!

  • SInce updating my iphone 5S to ios 8, iTunes shuts down during the app sync process. Any ideas how to fix? I now have the newest version of itunes on my laptop and it still shuts down.

    Since updating my iphone 5s software to ios 8, iTunes shuts down everytime in the app sync process. I have the most current version of Itunes on my laptop. Any ideas of how to fix?

    I feel its more of my sync drivers for itunes/iphone not working if that makes sense. Its not my itunes that stops responding, its more of that if the phone syncs up it fails to anything further.
    I've tried sync another iphone to the same itunes and windows autoplayer will allow the photos sorted on the iphone to be saved to the laptop but itunes won't even recongise the device is plugged in.
    Although it will charge the battery

  • My phone made random calls during the night

    I plugged in my phone as always for the night to charge.  When I woke up, the screen was magnified and my daughter said I had called her numerous times during the night.  My recent calls list showed multiple calls to her cell phone, to her work, and to her by face time.  How was this possible?  Also had a draft of an email started with all random letters typed in.  What is going on and how do i fix this?

    I did the hard reset as you suggested.  Last night I completely turned off my phone.  I woke up this morning and when I turned on my phone, this is what was on it: 
    Then I had to restart my phone to get it back up and working normal.
    Starting to believe the phone is possessed!

  • Getting the value(s) of varibales during the runtime

    Dear All
    I'm trying with the below listed code to log some information about a
    programm process during the Runtime. I would have e.g. a timestamp
    the values of some varibales s.o. The sutructure abap_call_stack_entry
    has some interesting fields but I get shown #### as value if I use some of them.
    The field abdbg-levent provides the form name which is called.
    How can get for example the content (value) of a variable within a routine or
    form ? Does anybody got an Idea on right using of this structure "abdbg"
    or how to solve above mentioned problem?
    perform first.
    perform second.
    perform fourth.
    form first.
    data latte type i.
    latte = 78.
    perform akt.
    endform.
    form second.
    data bolo type i.
    bolo = 345.
    perform akt.
    endform.
    form fourth.
    data sync type i.
    sync = 989.
    perform akt.
    endform.
    FORM akt.
      TYPES:
        begin of abap_call_stack_entry,
          mainprogram  like sy-repid,
          include      like sy-repid,
          line         type i,
          eventtype    like abdbg-leventtype,
          event        like abdbg-levent,
          flag_system  type c,
            FLINE TYPE ABDBG-FLINE,
            CLINE TYPE ABDBG-CLINE,
            BCOUNT TYPE ABDBG-BCOUNT,
            XCODE TYPE ABDBG-XCODE,
            REPID TYPE ABDBG-REPID,
            SREPID TYPE ABDBG-SREPID,
            BREAKP TYPE ABDBG-BREAKP,
            ACTUAL TYPE ABDBG-ACTUAL,
            CURRLINE TYPE ABDBG-CURRLINE,
            FIRSTV TYPE ABDBG-FIRSTV,
            VINDEX TYPE ABDBG-VINDEX,
            VNAME TYPE ABDBG-VNAME,
            VTYPE TYPE ABDBG-VTYPE,
            VLENGTH TYPE ABDBG-VLENGTH,
            VLINE TYPE ABDBG-VLINE,
            LITINDEX TYPE ABDBG-LITINDEX,
            LITOFFSET TYPE ABDBG-LITOFFSET,
            LITLENGTH TYPE ABDBG-LITLENGTH,
            LITTYPE TYPE ABDBG-LITTYPE,
            LITVALUE TYPE ABDBG-LITVALUE,
            V1INFO TYPE ABDBG-V1INFO,
            VNAME1 TYPE ABDBG-VNAME1,
            V1VALUE TYPE ABDBG-V1VALUE,
            V1HEX TYPE ABDBG-V1HEX,
            V2INFO TYPE ABDBG-V2INFO,
            VNAME2 TYPE ABDBG-VNAME2,
            V2VALUE TYPE ABDBG-V2VALUE,
            V2HEX TYPE ABDBG-V2HEX,
            V3INFO TYPE ABDBG-V3INFO,
            VNAME3 TYPE ABDBG-VNAME3,
            V3VALUE TYPE ABDBG-V3VALUE,
            V3HEX TYPE ABDBG-V3HEX,
            V4INFO TYPE ABDBG-V4INFO,
            VNAME4 TYPE ABDBG-VNAME4,
            V4VALUE TYPE ABDBG-V4VALUE,
            V4HEX TYPE ABDBG-V4HEX,
            VNUMFROM TYPE ABDBG-VNUMFROM,
            VNUMTO TYPE ABDBG-VNUMTO,
            BUTTON TYPE ABDBG-BUTTON,
            FIELDINFO TYPE ABDBG-FIELDINFO,
            FLDNAME TYPE ABDBG-FLDNAME,
            FLDVALUE TYPE ABDBG-FLDVALUE,
            FLDHEX TYPE ABDBG-FLDHEX,
            STRNAME TYPE ABDBG-STRNAME,
            STRINGNAME TYPE ABDBG-STRINGNAME,
            STRINGLEN TYPE ABDBG-STRINGLEN,
            STRINGOFF1 TYPE ABDBG-STRINGOFF1,
            STRINGOFF2 TYPE ABDBG-STRINGOFF2,
            TABNAME TYPE ABDBG-TABNAME,
            TABHEAD TYPE ABDBG-TABHEAD,
            TABLINE TYPE ABDBG-TABLINE,
            TLINE TYPE ABDBG-TLINE,
            TMODE TYPE ABDBG-TMODE,
            OBJNAME TYPE ABDBG-OBJNAME,
            OBJVIEW TYPE ABDBG-OBJVIEW,
            OBJMETHOD TYPE ABDBG-OBJMETHOD,
            OBJNAME_HA TYPE ABDBG-OBJNAME_HA,
            ICON_CI TYPE ABDBG-ICON_CI,
            ICON_PPP TYPE ABDBG-ICON_PPP,
            FLAGCLASAT TYPE ABDBG-FLAGCLASAT,
            FLAGINSTAT TYPE ABDBG-FLAGINSTAT,
            FLAGPUBLAT TYPE ABDBG-FLAGPUBLAT,
            FLAGPRIVAT TYPE ABDBG-FLAGPRIVAT,
            FLAGPROTAT TYPE ABDBG-FLAGPROTAT,
            DYNAME TYPE ABDBG-DYNAME,
            DYNUMB TYPE ABDBG-DYNUMB,
            DEVENT TYPE ABDBG-DEVENT,
            VOLEN TYPE ABDBG-VOLEN,
            VODEC TYPE ABDBG-VODEC,
            VOFFI TYPE ABDBG-VOFFI,
            POPOK TYPE ABDBG-POPOK,
            POPLINE TYPE ABDBG-POPLINE,
            WARNLINE TYPE ABDBG-WARNLINE,
            FIXPTARITH TYPE ABDBG-FIXPTARITH,
            RFCHOST TYPE ABDBG-RFCHOST,
            RFCSYSID TYPE ABDBG-RFCSYSID,
            RFCDEST TYPE ABDBG-RFCDEST,
            LICON TYPE ABDBG-LICON,
            LLINENUM3 TYPE ABDBG-LLINENUM3,
            LLINENUM6 TYPE ABDBG-LLINENUM6,
            LPROGRAM TYPE ABDBG-LPROGRAM,
            LEVENTTYPE TYPE ABDBG-LEVENTTYPE,
            LEVENT TYPE ABDBG-LEVENT,
            LPROGGROUP TYPE ABDBG-LPROGGROUP,
            LLANGUAGE TYPE ABDBG-LLANGUAGE,
            LLOADSIZE TYPE ABDBG-LLOADSIZE,
            LUPDATE TYPE ABDBG-LUPDATE,
            LFLAGKEY TYPE ABDBG-LFLAGKEY,
            LFLAGSEAR TYPE ABDBG-LFLAGSEAR,
            LSEARVALUE TYPE ABDBG-LSEARVALUE,
            LFLAG TYPE ABDBG-LFLAG,
            LISEARFROM TYPE ABDBG-LISEARFROM,
            ROLL_AREA TYPE ABDBG-ROLL_AREA,
            WFLAGOR TYPE ABDBG-WFLAGOR,
            WFLAGAND TYPE ABDBG-WFLAGAND,
            LWFLAGLOCA TYPE ABDBG-LWFLAGLOCA,
            LWPROGRAM TYPE ABDBG-LWPROGRAM,
            LWNAME TYPE ABDBG-LWNAME,
            LWCOMPOPER TYPE ABDBG-LWCOMPOPER,
            LWFLAGFIEL TYPE ABDBG-LWFLAGFIEL,
            LWVALUE TYPE ABDBG-LWVALUE,
            WPROGRAM TYPE ABDBG-WPROGRAM,
            WNAME TYPE ABDBG-WNAME,
            WVALUE TYPE ABDBG-WVALUE,
            LCOMPONENT TYPE ABDBG-LCOMPONENT,
            LCTYPE TYPE ABDBG-LCTYPE,
            LCLENGTH TYPE ABDBG-LCLENGTH,
            LVALUE TYPE ABDBG-LVALUE,
            SEARCHSTR TYPE ABDBG-SEARCHSTR,
            LTEXT TYPE ABDBG-LTEXT,
            REGION TYPE ABDBG-REGION,
            SUBKEY TYPE ABDBG-SUBKEY,
            SUBKEYC TYPE ABDBG-SUBKEYC,
            DISLINE TYPE ABDBG-DISLINE,
            SYSAREAHEA TYPE ABDBG-SYSAREAHEA,
            SYSAREALIN TYPE ABDBG-SYSAREALIN,
            MEMTABALLO TYPE ABDBG-MEMTABALLO,
            MEMTABUSED TYPE ABDBG-MEMTABUSED,
            MEM_ROLL TYPE ABDBG-MEM_ROLL,
            MEM_HEAP TYPE ABDBG-MEM_HEAP,
            MEM_HEAPMX TYPE ABDBG-MEM_HEAPMX,
            MEM_ROLLEX TYPE ABDBG-MEM_ROLLEX,
            MEM_MMUSED TYPE ABDBG-MEM_MMUSED,
            MEM_MMFREE TYPE ABDBG-MEM_MMFREE,
            MEM_SHORT TYPE ABDBG-MEM_SHORT,
            MEM_PAGING TYPE ABDBG-MEM_PAGING,
            MEM_SUM TYPE ABDBG-MEM_SUM,
            SYSTDEBUG TYPE ABDBG-SYSTDEBUG,
            MEMORY TYPE ABDBG-MEMORY,
            UPDTASKDBG TYPE ABDBG-UPDTASKDBG,
            AC_FLUSH TYPE ABDBG-AC_FLUSH,
            WARNLIST TYPE ABDBG-WARNLIST,
            WARNSTOP TYPE ABDBG-WARNSTOP,
            WARNDUMP TYPE ABDBG-WARNDUMP,
            TABTYPE TYPE ABDBG-TABTYPE,
            EXTTYPE TYPE ABDBG-EXTTYPE,
          end of abap_call_stack_entry.
      DATA:
        acse type abap_call_stack_entry,
        tab  type table of abap_call_stack_entry.
      CALL 'ABAP_CALLSTACK' ID 'DEPTH'     FIELD -1
                            ID 'CALLSTACK' FIELD tab.
        LOOP AT tab INTO acse FROM 2.
          WRITE:
          / 'Mainprog:', acse-mainprogram,
          / 'Include: ', acse-include,
          / 'Event:   ', acse-eventtype,
                         acse-event.
        ENDLOOP.
    ENDFORM.

    CALL 'ABAP_CALLSTACK' ID 'DEPTH' FIELD -1
    ID 'CALLSTACK' FIELD tab.
    provides useful information about  a programm
    and its routines like Programname linenumber etc.
    All what I want to have is getting more information
    concerning a programm during the runtime.
    As I have heard the above mentioned structure
    ABDBG provides exactly such things.
    And I have problems on using this sructure
    because I get characters like ##### instead
    of values of variables and so on.
    Please look to the structure components

  • How to do the job scheduling in BDC Call transaction

    Hi Experts,
    I've a Query like how to do the job scheduling in BDC Call transaction
      If anybody knows the answer please send me the reply.
      Thanks.
       Regards,
        Rekha

    Hi ,
    any progarm can be scheduled, wether it may be BDC or report thru SM36 Tcode.
    But do rememeber that if ur BDC is using GUI_UPLOAD function module, then it wont work , coz the function Gui_upload or GUI_DOWNLOAd wont work in back ground.
    If u r going to use OPEN_DATASET , READ dataset ....then it can be scheduled. i.e BDC can work if ur program retrievesz the data from Application server.
    Rvert back if any issues,
    Reward with poinst if helpful.
    Regards,
    Naveen

  • How can changes happened during the cube activation  be nullified.

    Hi all,
    I was trying to activate some business content infocube in the dev.server. I selectecd data flow before. In the process I collected all infoobjects associated with the cube and all the info-objects which are associated with that info-objects. When I installed the cube some of the customised business content info-objects associated with the cube got over written by the delivered version. We dont have the documentation which provides the information on which are all the infoobjects that were modified and which were not.
    Can any one give some idea how the changes happened during the cube activation can be nullified.Or how can I find out which were the info objects which were customised before business content was again activated and which are those changes.
    Regards,
    Anand

    Hi Anand,
    As long as you did not activate the Cube (= not activate BC, but cube itself)
    you can compare the changed cube with the active cube (Change cube screen, use button Version Comparison)
    Udo

  • What is the use of Task Flow Call?

    Hi,
    Usually we can call bounded task flow from unbounded task flow.
    What is the use of Task flow call? How is it different from calling in normal way?
    Can anyone please explain me?
    Thank you,
    Srini

    By using Task flow call you can call Bounded task flow from Bounded or Unbounded Task Flow
    check this link http://download.oracle.com/docs/cd/E12839_01/web.1111/b31974/taskflows_activities.htm#CHDJDJEF

  • Errors occurred during the extraction datasource of CRM System in Check extractor

    Dear All,
    Please find the below error's while I am extracting data from the data source in CRM.
    RM_QUOTA_ORDER_I: Table SMOXHEAD contains no BDOC name .
    Errors occurred during the extraction in Check extractor.
    Please let me know solution to resolve the issue.
    Thanks
    Regards,
    Sai

    Hi,
    Where your getting this error?
    during info pack load or checking at crm system RSA3?
    if your running your info pack then please run data source at RSA3.
    Seems like your source table may not have any bdocs.
    Where your runing this loads? prod or dev?
    Thanks

  • The iMac is very long (1 Minute) waiting during the programmoperation. I have run the diagnosesoftware and reinstalled lion on my system. .

    The iMac is very long (1 Minute) waiting during the programmoperation. I have run the diagnosesoftware and reinstalled lion on my system. It is always the same result. Sometimes the System runs very prober and than he fails very often.

    The iMac is very long (1 Minute) waiting during the programmoperation.
    You are referrring to how long it takes to startup your Mac?
    If so, open System Preferences > General
    Deselect:  Restore windows when quitting and re-opening apps
    And remove any apps in HD > Library > Startupitems
    Make sure there's at least 15% free space on the startup disk.
    Click your Apple menu icon top left in your screen. From the drop down menu click About This Mac then click More Info then select the Storage tab from the menu.
    If you have anti virus software installed, disable or uninstall the software to see if that makes a difference.

  • How to know the size in byte of a file before importing it with ftp

    hello
    i have a file in witch there is the pathe of many file
    i reade these path and i use ftp to get these file
    my problem is that i want to display a progress bar during the getting of file
    so dont no how i can know the size of these file to put a maximum to the progress bar

    package cni;
    import javax.swing.*;
    import sun.net.ftp.*;
    import sun.net.ftp.FtpClient.*;
    import java.io.*;
    import java.lang.*;
    import sun.net.TelnetInputStream;
    import java.util.*;
    import java.lang.String;
    public class FTPclients
    //Variables
    private static String server = "faycal";
    private static int port = 21;
    private static String user = "anonymous";
    private static String passwd = "[email protected]";
    public String toString(JTextField tx)
    String txt;
    txt= new String(tx.getText());
    return txt;
    public static void main(String args[])
    ConnFile cf = new ConnFile("d:\\cni\\adresse.txt");
    FTPclients fc = new FTPclients();
    ConnFile cfbis = new ConnFile("d:\\cni\\chemin.txt");
    try
    //String s=cf.lectureid();
    String s;
    while((s=cf.br.readLine())!=null)
    String s1=s.substring(0,s.lastIndexOf("\\"));
    String s2=s.substring(s.lastIndexOf("\\")+1);
    System.out.println(s1);
    System.out.println(s2);
    //ajout du double anti slash a la chaine s1
    String name =s1;
    StringBuffer sb = new StringBuffer(s1.length()+10);
    for(int index=0; index<s1.length();index++)
    char c = s1.charAt(index);
    sb.append(c);
    if(c=='\\')
    sb.append('\\');
    System.out.println(s1);
    s1= sb.toString();
    System.out.println(s1);
    //creation d un client ftp
    FtpClient client = new FtpClient();
    System.out.println("gggggggggggggalut");
    client.openServer(server,port);
    System.out.println("xxxxxxxxxxxxalut");
    client.login(user, passwd);
    client.binary();
    client.cd(s1);
    System.out.println("la taille de "+s1+" est "+taille+" octets");
    System.out.println("ssssssssssssalut");
    System.out.println(client.welcomeMsg);
    System.out.println("buhhhhhhhhhhhhh");
    //copie du chemin saisi par l utilisateur
    String chemre;
    cfbis = new ConnFile("d:\\cni\\chemin.txt");
    String chemvir = cfbis.lectureid();
    System.out.println(chemvir);
    if (chemvir==null)
    chemre="d:\\";
    System.out.println(chemre);
    else
    chemre=chemvir;
    System.out.println(chemre);
    String chem=chemre+"\\"+s2;
    System.out.println(chem);
    //pour creer le nouveau fichier
    TelnetInputStream fich = client.get(s2);
    FileOutputStream out = new FileOutputStream(chem);
    //pour ecrire dans le nouveau fichier
    int i;
    while(true)
    i = fich.read();
    if(i == -1)
    { break; }
    out.write((byte)i);
    System.out.println("bahhhhhhhhhhhh");
    //fermeture du serveur ftp
    client.closeServer();
    System.out.println("ok");
    }//fin while
    String chemvir = cfbis.lectureid();
    }//fin du try
    catch(IOException e)
    System.out.println(e);
    }//fin du main
    }// fin de la classe
    do you know how

  • How to know the Disconnection point?

    Hi all,
    I'm trying to figure it out this.
    During the Chat session in IC, is it possible to know :
    1. if the disconnection caused by the Internet connection line
    2. Customer hit the 'End Chat'  button
    Anybody worked on it or having some idea?
    Thank you.

    Hi,
    When the customer click on End chat button an event will get triggered in that you can write your logic based on the requirement.

  • How to know the parameters passed between the pages

    Hi , am working on the customizations.
    Can anybody tell me how to know the parameters passed between the pages in OAF.
    Thanks a lot in advance.
    regards
    kumar

    U can read
    Framework ToolBox Tutorial Lesson 2, Part 4: Page-to-Page Communication
    in this path
    <<your OAF folder>>jdevdoc\WebHelp\toolbox\510\lessons\lesson2_pagecom.htm
    OAPageContext
    PutEncryptedParameter( )
    GetDecryptedParameter( )
    OAPageContext (called from UI client)
    putTransactionValue( )
    getTransactionValue( )
    removeTransactionValue( )
    OADBTransaction (called from server)
    putValue( )
    getValue( )
    removeValue( )
    OAPageContext (called from UI client)
    TIP the Framework expects to introduce methods for managing session data from the server at some point in the future.
    putSessionValue( )
    removeSessionValue( )
    getSessionValue( )
    Good luck !

  • Ejb calling ejb, how many threads?

    A few of questions regarding the way WLS threads EJBs:
    1. It seems straightforward if I deploy a WLS "application" that's composed of
    a single EJB. I suppose that the app runs as a thread within the WLS JVM and "pooling"
    also makes sense.
    2. But what about an "application" that's composed of 2 EJBs, one calling the
    methods of the other. Is each EJB ran in its on thread? It seems like they would
    have to be in order to "pool" them or does the "pooling" affect the entire "application",
    i.e. you don't pool the individual beans but the entire app?
    3. How is all this affected by using local interfaces for the EJB-to-EJB method
    calls?How does this affect pooling and threading within WLS?
    Thanks.

    Hi Jack,
    "Jack Ottofaro" <[email protected]> wrote in message
    news:[email protected]..
    A few of questions regarding the way WLS threads EJBs:
    1. It seems straightforward if I deploy a WLS "application" that'scomposed of
    a single EJB. I suppose that the app runs as a thread within the WLS JVMand "pooling"
    also makes sense.It just seems because you have the question number two :)
    2. But what about an "application" that's composed of 2 EJBs, one callingthe
    methods of the other. Is each EJB ran in its on thread? It seems like theywould
    Actual EJB code runs within a thread that first began
    processing of the request. So you may have two cases.
    First, if the bean is colocated (belongs to the same jar
    or ear) with the caller, by default it will be a local call
    and the bean will run within a caller thread. Second,
    if it's remote call, it will run within "its own" thread.
    have to be in order to "pool" them or does the "pooling" affect the entire"application",
    i.e. you don't pool the individual beans but the entire app?I'm not sure I understood the question.
    3. How is all this affected by using local interfaces for the EJB-to-EJBmethod
    calls?How does this affect pooling and threading within WLS?Local interfaces buys nothing but mess. By default all calls to
    the beans residing in the same application , even if they are
    declared as EJBObjects, are optimized to be local so that
    parameters are passed by reference and are not subjects of
    serialization.
    Hope this helps.
    Regards,
    Slava Imeshev

  • How to know how much quantity is available for the batch ?

    hi all,
    I am doing a batch split on delivery item....but when i enter the batch and quantity ( say 500qty) it says Zero quantity available for the batch....
    <b>How to know how much quantity is available for the batch for that material</b> so that can we use the batch during batch split.....because batches are attached to a handling unit as well.....
    regards,
    Subba

    HI Subba,
    You can know this Thr MMBE Transaction Code
    Reward if it helps
    regards
    Srini

Maybe you are looking for

  • Hey guys, just got swindled by Skype, don't know w...

    So a few days ago I discovered that Skype on my Windows Phone didn't have me logged in anymore. I tried logging in several times but to no avail, I was told that my account info was incorrect. I tried resetting my password, but both times I tried it

  • Material wise vendor outstanding report.

    Dear All,            We require to find out the outstanding amount payable for each type of Material Supplied. Is there any Standard report in SAP for it. We are using SAP 4.7. Thanks,

  • Installing problem with 6230i

    Hi, I have a big problem with Pc Suite application installer.Whenever I try to install a .jar file that's bigger than about 150-200 kb,I get an error message which states that i don't have enough memory.But i have about 3 MB free phone memory and 26

  • Logic 9.0.2 with SL wont start!!

    Please help, I just installed snow leopard ran the updates which downloaded Logic 9.0.2. Now when I start logic the splash screen comes up, it starts loading but then freezes at "Initializing Loop Browser" Any ideas? Thanks!

  • Battery Apps not updating on lockscreen

    Hey everyone... I have been using my Lumia 620 for a month now. But, I still haven't understood one thing. I tried installing around 3-4 Battery apps so that I can see my battery status on the lockscreen. None of them update themselves, even after ma