Very strange compile error PLEASE HELP

in one class (Slanje) I defined method
public void(String host,String from,String to,String subject,String messagetext){.....
in other (Prikaz) I create an instance of class Slanje and try to use:
Slanje n=new Slanje();
n.infos(host,from,to,subjecta,poruka);
where to and subjecta getting from JTextField, using method getText();
but get following error mesage:
C:\javafile\samostalni\Mailpr\Prikaz.java:117: infos(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) in Slanje cannot be applied to (java.lang.String,java.lang.String,java.lang.String,javax.swing.JTextField,java.lang.String)
          n.infos(host,from,to,subjecta,poruka);
I don't get it. what is the difference, both takes String

I know, but isn't it string because I used getText;
anyway how can I avoid that.
Is there some another way ( I tried to use cast operator (String)) but no success.
Help me someone, please!

Similar Messages

  • I upgraded to mountain lion a week ago and now on startup of my macbook pro, microsoft excel and word start up automatically and then crash? very strange can anyone please help? I have checked the login items under users and groups and there is nothing.

    I upgraded to mountain lion a week ago and now on startup of my macbook pro, microsoft excel and word start up automatically and then crash? very strange can anyone please help? I have checked the login items under users and groups and there is nothing.

    Are you using the Office for Mac 2011 version, as you need to do?  The Office for Mac 2004 is Not at all compatible with Mountain Lion, and the 2008 version has been noted to have some problems running with ML.
    Hope this helps

  • Safari Crash - Problem with doodle (planer) app  -  doodle web links cause safari to crash with a very strange message "Error - Please make sure Safari is not used in Private Modus" (translated from german) No Privat Modus buttom in ios 7 safari settings!

    Safari Crash - Problem with doodle (planer) app  -  doodle web links cause safari to crash with a very strange message "Error - Please make sure Safari is not used in Private Modus" (translated from german) No Privat Modus buttom in ios 7 safari settings! Works fine with an older Safari Version. Web link, call doodle app.  You could see the website in the backround working but safari crashes after clicking on the error window.   Any suggestions?

    Turn off Private Browsing.
    Tap "Private" on Safari Screen to disable Private Browsing. When top of screen is white, Private Browsing is off.

  • Very strange iTunes behavior, please help!

    Every once in a while, I will notice a song in my library that has a time listed that I know is shorter than the song's actual length (for example, a song I know to be 5 minutes+ will be listed in the library as 1:37). When I play the song, the time adjusts to the proper time, so that is not the problem. However, if I sync my iPod, iTunes will only sync the time listed (1:37 in the example) to the iPod! It seems to be 100% random in the songs it effects and time it changes it to. Please help me out!
    Edit: I also forgot to mention, it will make songs longer also, but that is not as much of a problem because it will go on the iPod, show the "longer" time and then just go to the next track once the actual music is over
    Message was edited by: zellin

    I only have a 'CD Info.cidb' file in the preferences.
    Couldn't hurt to drag them on the desktop too, I suppose.
    Just don't trash them yet.
    The article I referenced to, should have read as here
    Forgot 1 character and didn't check it with 'preview' (this one I did)
    M
    17' iMac fp 800 MHz 768 MB RAM   Mac OS X (10.3.9)   Several ext. HD (backup and data)

  • Strange input errors, please help

    ok, Ive been following a tutorial located here. I just got to section 2.4 and the tutorial says that it would be easier to allow input with his program. So I downloaded his program, compiled it, cheked to make sure that the compiled TextIO.class was in the right place. (BTW, Im running NetBeans IDE 4.0 beta 2). This is my program...:
    public class helloworld2 {
        // a prog to display hello world
        public static void main(String[] args) {
            double hellonumber;
            double hellonumber2;
            int userImput; //imput tut. the number imputed
            int square; //imput tut. userimput squared
            hellonumber = 7777;
            hellonumber2 = 6666;
            System.out.println("Hello World"); // how to print words
            System.out.print(hellonumber); // variable use....duh
            System.out.println(" Is the number of the day");
            System.out.print(hellonumber2); // and again
            System.out.println(" Is the other number of the day");
            System.out.print("The square root of the number of the day is ");
            System.out.println(Math.sqrt(7777)); // square root
            System.out.print("Wow! The amount of letters in this sentance is ");
            System.out.println("Wow! The amount of letters in this sentance is".length()); //this is used to count letters, punctuation, and spaces in the aforementioned sentance
            System.out.println("cat".toUpperCase()); //makes aforementioned sentance in all caps
            System.out.println("CAT".toLowerCase()); // same as above but opposite
            //begin imput tut.
            System.out.print("Please type a number: ");
            userImput = TextIO.getInt();
            square = userImput * userImput;
            System.out.print("The square of that number is ");
            System.out.println(square);
    }       //doneThis is the program I got off of the tutorial site, it is supposed to make input easier, but instead gets errors
    The file defines a class TextIO, which provides a simple interface
    to Java's standard console input and output. This class defines
    several static methods for reading and writing
    values of various type.
    This class will only work with standard, interactive applications.
    When it is used in such an application, System.out and System.in
    should not be used directly, since the TextIO class thinks it has
    exclusive control of System.out and System.in. (Actually, using
    System.out will probably not cause any problems, but don't use
    System.in.)
    To use this class in your program, simply include the compiled class
    file TextIO.class in the same directory with the class file for your
    main program. (If you are using a development environment such as
    CodeWarrior or Visual J++, you can include the source file,
    TextIO.java in your project.) You can then use all the public static methods
    from the TextIO class in your program. (In your programs, the names
    of the methods must be prefaced with "TextIO." For example, you should
    use the name TextIO.getln() rather than simply getln().)
    (This class is for use with my on-line introductory java textbook,
    which is available at http://math.hws.edu/eck/cs124/notes/index.html.)
    Written by: David Eck
    Department of Mathematics and Computer Science
    Hobart and William Smith Colleges
    Geneva, NY 14456
    Email: [email protected]
    WWW: http://math.hws.edu/eck/
    July 16, 1998
    Modified February, 2000; getChar() now skips blanks and CR's, and getAnyChar()
    can be used to read the next char even if it's a blank or CR.
    import java.io.*;
    public class TextIO {
    // *************************** I/O Methods *********************************
    // Methods for writing the primitive types, plus type String,
    // to the console, with no extra spaces.
    // Note that the real-number data types, float
    // and double, a rounded version is output that will
    // use at most 10 or 11 characters. If you want to
    // output a real number with full accuracy, use
    // "TextIO.put(String.valueOf(x))", for example.
    public static void put(int x) { put(x,0); } // Note: also handles byte and short!
    public static void put(long x) { put(x,0); }
    public static void put(double x) { put(x,0); } // Also handles float.
    public static void put(char x) { put(x,0); }
    public static void put(boolean x) { put(x,0); }
    public static void put(String x) { put(x,0); }
    // Methods for writing the primitive types, plus type String,
    // to the console,followed by a carriage return, with
    // no extra spaces.
    public static void putln(int x) { put(x,0); newLine(); } // Note: also handles byte and short!
    public static void putln(long x) { put(x,0); newLine(); }
    public static void putln(double x) { put(x,0); newLine(); } // Also handles float.
    public static void putln(char x) { put(x,0); newLine(); }
    public static void putln(boolean x) { put(x,0); newLine(); }
    public static void putln(String x) { put(x,0); newLine(); }
    // Methods for writing the primitive types, plus type String,
    // to the console, with a minimum field width of w,
    // and followed by a carriage return.
    // If output value is less than w characters, it is padded
    // with extra spaces in front of the value.
    public static void putln(int x, int w) { put(x,w); newLine(); } // Note: also handles byte and short!
    public static void putln(long x, int w) { put(x,w); newLine(); }
    public static void putln(double x, int w) { put(x,w); newLine(); } // Also handles float.
    public static void putln(char x, int w) { put(x,w); newLine(); }
    public static void putln(boolean x, int w) { put(x,w); newLine(); }
    public static void putln(String x, int w) { put(x,w); newLine(); }
    // Method for outputting a carriage return
    public static void putln() { newLine(); }
    // Methods for writing the primitive types, plus type String,
    // to the console, with minimum field width w.
    public static void put(int x, int w) { dumpString(String.valueOf(x), w); } // Note: also handles byte and short!
    public static void put(long x, int w) { dumpString(String.valueOf(x), w); }
    public static void put(double x, int w) { dumpString(realToString(x), w); } // Also handles float.
    public static void put(char x, int w) { dumpString(String.valueOf(x), w); }
    public static void put(boolean x, int w) { dumpString(String.valueOf(x), w); }
    public static void put(String x, int w) { dumpString(x, w); }
    // Methods for reading in the primitive types, plus "words" and "lines".
    // The "getln..." methods discard any extra input, up to and including
    // the next carriage return.
    // A "word" read by getlnWord() is any sequence of non-blank characters.
    // A "line" read by getlnString() or getln() is everything up to next CR;
    // the carriage return is not part of the returned value, but it is
    // read and discarded.
    // Note that all input methods except getAnyChar(), peek(), the ones for lines
    // skip past any blanks and carriage returns to find a non-blank value.
    // getln() can return an empty string; getChar() and getlnChar() can
    // return a space or a linefeed ('\n') character.
    // peek() allows you to look at the next character in input, without
    // removing it from the input stream. (Note that using this
    // routine might force the user to enter a line, in order to
    // check what the next character is.)
    // Acceptable boolean values are the "words": true, false, t, f, yes,
    // no, y, n, 0, or 1; uppercase letters are OK.
    // None of these can produce an error; if an error is found in input,
    // the user is forced to re-enter.
    // Available input routines are:
    // getByte() getlnByte() getShort() getlnShort()
    // getInt() getlnInt() getLong() getlnLong()
    // getFloat() getlnFloat() getDouble() getlnDouble()
    // getChar() getlnChar() peek() getAnyChar()
    // getWord() getlnWord() getln() getString() getlnString()
    // (getlnString is the same as getln and is only provided for consistency.)
    public static byte getlnByte() { byte x=getByte(); emptyBuffer(); return x; }
    public static short getlnShort() { short x=getShort(); emptyBuffer(); return x; }
    public static int getlnInt() { int x=getInt(); emptyBuffer(); return x; }
    public static long getlnLong() { long x=getLong(); emptyBuffer(); return x; }
    public static float getlnFloat() { float x=getFloat(); emptyBuffer(); return x; }
    public static double getlnDouble() { double x=getDouble(); emptyBuffer(); return x; }
    public static char getlnChar() { char x=getChar(); emptyBuffer(); return x; }
    public static boolean getlnBoolean() { boolean x=getBoolean(); emptyBuffer(); return x; }
    public static String getlnWord() { String x=getWord(); emptyBuffer(); return x; }
    public static String getlnString() { return getln(); } // same as getln()
    public static String getln() {
    StringBuffer s = new StringBuffer(100);
    char ch = readChar();
    while (ch != '\n') {
    s.append(ch);
    ch = readChar();
    return s.toString();
    public static byte getByte() { return (byte)readInteger(-128L,127L); }
    public static short getShort() { return (short)readInteger(-32768L,32767L); }
    public static int getInt() { return (int)readInteger((long)Integer.MIN_VALUE, (long)Integer.MAX_VALUE); }
    public static long getLong() { return readInteger(Long.MIN_VALUE, Long.MAX_VALUE); }
    public static char getAnyChar(){ return readChar(); }
    public static char peek() { return lookChar(); }
    public static char getChar() { // skip spaces & cr's, then return next char
    char ch = lookChar();
    while (ch == ' ' || ch == '\n') {
    readChar();
    if (ch == '\n')
    dumpString("? ",0);
    ch = lookChar();
    return readChar();
    public static float getFloat() {
    float x = 0.0F;
    while (true) {
    String str = readRealString();
    if (str.equals("")) {
    errorMessage("Illegal floating point input.",
    "Real number in the range " + Float.MIN_VALUE + " to " + Float.MAX_VALUE);
    else {
    Float f = null;
    try { f = Float.valueOf(str); }
    catch (NumberFormatException e) {
    errorMessage("Illegal floating point input.",
    "Real number in the range " + Float.MIN_VALUE + " to " + Float.MAX_VALUE);
    continue;
    if (f.isInfinite()) {
    errorMessage("Floating point input outside of legal range.",
    "Real number in the range " + Float.MIN_VALUE + " to " + Float.MAX_VALUE);
    continue;
    x = f.floatValue();
    break;
    return x;
    public static double getDouble() {
    double x = 0.0;
    while (true) {
    String str = readRealString();
    if (str.equals("")) {
    errorMessage("Illegal floating point input",
    "Real number in the range " + Double.MIN_VALUE + " to " + Double.MAX_VALUE);
    else {
    Double f = null;
    try { f = Double.valueOf(str); }
    catch (NumberFormatException e) {
    errorMessage("Illegal floating point input",
    "Real number in the range " + Double.MIN_VALUE + " to " + Double.MAX_VALUE);
    continue;
    if (f.isInfinite()) {
    errorMessage("Floating point input outside of legal range.",
    "Real number in the range " + Double.MIN_VALUE + " to " + Double.MAX_VALUE);
    continue;
    x = f.doubleValue();
    break;
    return x;
    public static String getWord() {
    char ch = lookChar();
    while (ch == ' ' || ch == '\n') {
    readChar();
    if (ch == '\n')
    dumpString("? ",0);
    ch = lookChar();
    StringBuffer str = new StringBuffer(50);
    while (ch != ' ' && ch != '\n') {
    str.append(readChar());
    ch = lookChar();
    return str.toString();
    public static boolean getBoolean() {
    boolean ans = false;
    while (true) {
    String s = getWord();
    if ( s.equalsIgnoreCase("true") || s.equalsIgnoreCase("t") ||
    s.equalsIgnoreCase("yes") || s.equalsIgnoreCase("y") ||
    s.equals("1") ) {
    ans = true;
    break;
    else if ( s.equalsIgnoreCase("false") || s.equalsIgnoreCase("f") ||
    s.equalsIgnoreCase("no") || s.equalsIgnoreCase("n") ||
    s.equals("0") ) {
    ans = false;
    break;
    else
    errorMessage("Illegal boolean input value.",
    "one of: true, false, t, f, yes, no, y, n, 0, or 1");
    return ans;
    // ***************** Everything beyond this point is private *******************
    // ********************** Utility routines for input/output ********************
    private static InputStream in = System.in; // rename standard input stream
    private static PrintStream out = System.out; // rename standard output stream
    private static String buffer = null; // one line read from input
    private static int pos = 0; // position of next char in input line that has
    // not yet been processed
    private static String readRealString() { // read chars from input following syntax of real numbers
    StringBuffer s=new StringBuffer(50);
    char ch=lookChar();
    while (ch == ' ' || ch == '\n') {
    readChar();
    if (ch == '\n')
    dumpString("? ",0);
    ch = lookChar();
    if (ch == '-' || ch == '+') {
    s.append(readChar());
    ch = lookChar();
    while (ch == ' ') {
    readChar();
    ch = lookChar();
    while (ch >= '0' && ch <= '9') {
    s.append(readChar());
    ch = lookChar();
    if (ch == '.') {
    s.append(readChar());
    ch = lookChar();
    while (ch >= '0' && ch <= '9') {
    s.append(readChar());
    ch = lookChar();
    if (ch == 'E' || ch == 'e') {
    s.append(readChar());
    ch = lookChar();
    if (ch == '-' || ch == '+') {
    s.append(readChar());
    ch = lookChar();
    while (ch >= '0' && ch <= '9') {
    s.append(readChar());
    ch = lookChar();
    return s.toString();
    private static long readInteger(long min, long max) { // read long integer, limited to specified range
    long x=0;
    while (true) {
    StringBuffer s=new StringBuffer(34);
    char ch=lookChar();
    while (ch == ' ' || ch == '\n') {
    readChar();
    if (ch == '\n')
    dumpString("? ",0);
    ch = lookChar();
    if (ch == '-' || ch == '+') {
    s.append(readChar());
    ch = lookChar();
    while (ch == ' ') {
    readChar();
    ch = lookChar();
    while (ch >= '0' && ch <= '9') {
    s.append(readChar());
    ch = lookChar();
    if (s.equals("")){
    errorMessage("Illegal integer input.",
    "Integer in the range " + min + " to " + max);
    else {
    String str = s.toString();
    try {
    x = Long.parseLong(str);
    catch (NumberFormatException e) {
    errorMessage("Illegal integer input.",
    "Integer in the range " + min + " to " + max);
    continue;
    if (x < min || x > max) {
    errorMessage("Integer input outside of legal range.",
    "Integer in the range " + min + " to " + max);
    continue;
    break;
    return x;
    private static String realToString(double x) {
    // Goal is to get a reasonable representation of x in at most
    // 10 characters, or 11 characters if x is negative.
    if (Double.isNaN(x))
    return "undefined";
    if (Double.isInfinite(x))
    if (x < 0)
    return "-INF";
    else
    return "INF";
    if (Math.abs(x) <= 5000000000.0 && Math.rint(x) == x)
    return String.valueOf( (long)x );
    String s = String.valueOf(x);
    if (s.length() <= 10)
    return s;
    boolean neg = false;
    if (x < 0) {
    neg = true;
    x = -x;
    s = String.valueOf(x);
    if (x >= 0.00005 && x <= 50000000 && (s.indexOf('E') == -1 && s.indexOf('e') == -1)) { // trim x to 10 chars max
    s = round(s,10);
    s = trimZeros(s);
    else if (x > 1) { // construct exponential form with positive exponent
    long power = (long)Math.floor(Math.log(x)/Math.log(10));
    String exp = "E" + power;
    int numlength = 10 - exp.length();
    x = x / Math.pow(10,power);
    s = String.valueOf(x);
    s = round(s,numlength);
    s = trimZeros(s);
    s += exp;
    else { // constuct exponential form
    long power = (long)Math.ceil(-Math.log(x)/Math.log(10));
    String exp = "E-" + power;
    int numlength = 10 - exp.length();
    x = x * Math.pow(10,power);
    s = String.valueOf(x);
    s = round(s,numlength);
    s = trimZeros(s);
    s += exp;
    if (neg)
    return "-" + s;
    else
    return s;
    private static String trimZeros(String num) { // used by realToString
    if (num.indexOf('.') >= 0 && num.charAt(num.length() - 1) == '0') {
    int i = num.length() - 1;
    while (num.charAt(i) == '0')
    i--;
    if (num.charAt(i) == '.')
    num = num.substring(0,i);
    else
    num = num.substring(0,i+1);
    return num;
    private static String round(String num, int length) { // used by realToString
    if (num.indexOf('.') < 0)
    return num;
    if (num.length() <= length)
    return num;
    if (num.charAt(length) >= '5' && num.charAt(length) != '.') {
    char[] temp = new char[length+1];
    int ct = length;
    boolean rounding = true;
    for (int i = length-1; i >= 0; i--) {
    temp[ct] = num.charAt(i);
    if (rounding && temp[ct] != '.') {
    if (temp[ct] < '9') {
    temp[ct]++;
    rounding = false;
    else
    temp[ct] = '0';
    ct--;
    if (rounding) {
    temp[ct] = '1';
    ct--;
    // ct is -1 or 0
    return new String(temp,ct+1,length-ct);
    else
    return num.substring(0,length);
    private static void dumpString(String str, int w) { // output string to console
    for (int i=str.length(); i<w; i++)
    out.print(' ');
    for (int i=0; i<str.length(); i++)
    if ((int)str.charAt(i) >= 0x20 && (int)str.charAt(i) != 0x7F) // no control chars or delete
    out.print(str.charAt(i));
    else if (str.charAt(i) == '\n' || str.charAt(i) == '\r')
    newLine();
    private static void errorMessage(String message, String expecting) {
    // inform user of error and force user to re-enter.
    newLine();
    dumpString(" *** Error in input: " + message + "\n", 0);
    dumpString(" *** Expecting: " + expecting + "\n", 0);
    dumpString(" *** Discarding Input: ", 0);
    if (lookChar() == '\n')
    dumpString("(end-of-line)\n\n",0);
    else {
    while (lookChar() != '\n')
    out.print(readChar());
    dumpString("\n\n",0);
    dumpString("Please re-enter: ", 0);
    readChar(); // discard the end-of-line character
    private static char lookChar() { // return next character from input
    if (buffer == null || pos > buffer.length())
    fillBuffer();
    if (pos == buffer.length())
    return '\n';
    return buffer.charAt(pos);
    private static char readChar() { // return and discard next character from input
    char ch = lookChar();
    pos++;
    return ch;
    private static void newLine() { // output a CR to console
    out.println();
    out.flush();
    private static boolean possibleLinefeedPending = false;
    private static void fillBuffer() { // Wait for user to type a line and press return,
    // and put the typed line into the buffer.
    StringBuffer b = new StringBuffer();
    out.flush();
    try {
    int ch = in.read();
    if (ch == '\n' && possibleLinefeedPending)
    ch = in.read();
    possibleLinefeedPending = false;
    while (ch != -1 && ch != '\n' && ch != '\r') {
    b.append((char)ch);
    ch = in.read();
    possibleLinefeedPending = (ch == '\r');
    if (ch == -1) {
    System.out.println("\n*** Found an end-of-file while trying to read from standard input!");
    System.out.println("*** Maybe your Java system doesn't implement standard input?");
    System.out.println("*** Program will be terminated.\n");
    throw new RuntimeException("End-of-file on standard input.");
    catch (IOException e) {
    System.out.println("Unexpected system error on input.");
    System.out.println("Terminating program.");
    System.exit(1);
    buffer = b.toString();
    pos = 0;
    private static void emptyBuffer() { // discard the rest of the current line of input
    buffer = null;
    } // end of class TextIOI know that it is a mouthful, but I go it off the tutorial site. When it didnt work, I persued finding another input program. I found one on this forum:
    import java.io.*;
    public class MyInput {
      /**Read a string from the keyboard*/
      public static String readString()
        BufferedReader br
          = new BufferedReader(new InputStreamReader(System.in), 1);
        // Declare and initialize the string
        String string = " ";
        // Get the string from the keyboard
        try
          string = br.readLine();
        catch (IOException ex)
          System.out.println(ex);
        // Return the string obtained from the keyboard
        return string;
      /**Read an int value from the keyboard*/
      public static int readInt()
        return Integer.parseInt(readString());
      /**Read a double value from the keyboard*/
      public static double readDouble()
        return Double.parseDouble(readString());
    }and made a new small program to test it:
    public class Driver
         public static void main ( String[] args)
              System.out.println("Enter a number");
              int number = MyInput.readInt();
              System.out.println("number entered "+ number);
              System.out.println("Enter another number");
              number = MyInput.readInt();
              System.out.println("number entered "+ number);
    the output:
    init:
    deps-jar:
    compile-single:
    run-single:
    Enter a number
    Exception in thread "main" java.lang.NumberFormatException: null
    at java.lang.Integer.parseInt(Integer.java:415)
    at java.lang.Integer.parseInt(Integer.java:497)
    at MyInput.readInt(MyInput.java:32)
    at Driver.main(Driver.java:6)
    Java Result: 1
    BUILD SUCCESSFUL (total time: 0 seconds)
    I REALLY appreciate your help. Im a n00b by definition, but would really like to get into the java community. I have minimal C++ knowledge. anyway, Thanks for looking over all of this n00bish garbage.

    Exception in thread "main" java.lang.NumberFormatException: null
    at java.lang.Integer.parseInt(Integer.java:415)
    at java.lang.Integer.parseInt(Integer.java:497)
    at MyInput.readInt(MyInput.java:32)This tells you that there was a NumberFormatException and that the value which was not a number was "null". You can guess what NumberFormatException means, or if you can't possibly imagine then you can look it up in the API documentation.
    It also tells you that it was caused by line 32 of your MyInputClass (the last line of the stack trace) and that you were calling Integer.parseInt in that line (the line just above that).
    Your thousand lines of code are all very well but I don't know which one of them is line 32. Your text editor should be able to tell you that. Find out why that line of code is passing null to Integer.parseInt.

  • Very strange compile error...

    Hi,
    All my java programs compile fine, except for when I try to set the background color of a component. It's driving me nuts. I've uninstalled and reinstalled the Java JDK, but to no avail. Here's the text of the error message when I attempt to compile.
    Unexpected Signal : EXCEPTION_FLT_STACK_CHECK (0xc0000092) occurred at PC=0xE6D2
    12
    Function=[Unknown.]
    Library=(N/A)
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
    Dynamic libraries:
    0x00400000 - 0x0040B000 C:\j2sdk1.4.2_05\bin\javac.exe
    0x77F50000 - 0x77FF7000 C:\WINDOWS\System32\ntdll.dll
    0x77E60000 - 0x77F46000 C:\WINDOWS\system32\kernel32.dll
    0x77DD0000 - 0x77E5D000 C:\WINDOWS\system32\ADVAPI32.dll
    0x78000000 - 0x7807E000 C:\WINDOWS\system32\RPCRT4.dll
    0x77C10000 - 0x77C63000 C:\WINDOWS\system32\MSVCRT.dll
    0x08000000 - 0x08139000 C:\j2sdk1.4.2_05\jre\bin\client\jvm.dll
    0x77D40000 - 0x77DC6000 C:\WINDOWS\system32\USER32.dll
    0x77C70000 - 0x77CB0000 C:\WINDOWS\system32\GDI32.dll
    0x76B40000 - 0x76B6C000 C:\WINDOWS\System32\WINMM.dll
    0x76390000 - 0x763AC000 C:\WINDOWS\System32\IMM32.DLL
    0x629C0000 - 0x629C8000 C:\WINDOWS\System32\LPK.DLL
    0x72FA0000 - 0x72FFA000 C:\WINDOWS\System32\USP10.dll
    0x6BC00000 - 0x6BC14000 C:\WINDOWS\System32\DrvTrNTm.dll
    0x6BC20000 - 0x6BC3D000 C:\WINDOWS\System32\DrvTrNTl.dll
    0x00A20000 - 0x00A94000 C:\WINDOWS\TEMP\qka3.tmp
    0x77340000 - 0x773CB000 C:\WINDOWS\system32\COMCTL32.DLL
    0x71B20000 - 0x71B31000 C:\WINDOWS\system32\MPR.DLL
    0x771B0000 - 0x772C7000 C:\WINDOWS\system32\OLE32.DLL
    0x77120000 - 0x771AB000 C:\WINDOWS\system32\OLEAUT32.DLL
    0x71AD0000 - 0x71AD8000 C:\WINDOWS\System32\WSOCK32.DLL
    0x71AB0000 - 0x71AC5000 C:\WINDOWS\System32\WS2_32.dll
    0x71AA0000 - 0x71AA8000 C:\WINDOWS\System32\WS2HELP.dll
    0x00BC0000 - 0x00BEB000 C:\WINDOWS\System32\msctfime.ime
    0x10000000 - 0x10007000 C:\j2sdk1.4.2_05\jre\bin\hpi.dll
    0x00C00000 - 0x00C0E000 C:\j2sdk1.4.2_05\jre\bin\verify.dll
    0x00C10000 - 0x00C29000 C:\j2sdk1.4.2_05\jre\bin\java.dll
    0x00C30000 - 0x00C3D000 C:\j2sdk1.4.2_05\jre\bin\zip.dll
    0x76C90000 - 0x76CB2000 C:\WINDOWS\system32\imagehlp.dll
    0x6D510000 - 0x6D58D000 C:\WINDOWS\system32\DBGHELP.dll
    0x77C00000 - 0x77C07000 C:\WINDOWS\system32\VERSION.dll
    0x76BF0000 - 0x76BFB000 C:\WINDOWS\System32\PSAPI.DLL
    Heap at VM Abort:
    Heap
    def new generation total 576K, used 362K [0x10010000, 0x100b0000, 0x104f0000)
    eden
    Another exception has been detected while we were handling last error.
    Dumping information about last error:
    ERROR REPORT FILE = (N/A)
    PC = 0x00e6d212
    SIGNAL = -1073741678
    FUNCTION NAME = (N/A)
    OFFSET = 0xFFFFFFFF
    LIBRARY NAME = (N/A)
    Please check ERROR REPORT FILE for further information, if there is any.
    Good bye.
    And here' s the block of code that causes the error... if I comment out the line
    panel.setBackground(Color.white)it compiles without error.
    JPanel panel = new JPanel();
    panel.setBorder(BorderFactory.createLoweredBevelBorder());
    panel.setPreferredSize(new Dimension(400,300));
    panel.setBackground(Color.white);I am running Windows XP Home Edition. Any ideas? Help is greatly appreciated.
    Nick

    Your JVM crashed when you compile your file. This is unusual.
    If your can reproduce this with a small test-case, I suggest you
    filke a bug here: http://bugs.sun.com/services/bugreport/index.jsp
    --Alexis                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Strange Forms Error - please help!

    Hello,
    I have a form that utilizes WebUtil to upload/download files to and from the application server. On this form the user can click a "Create New" button that will make the following call:
    document_list := WEBUTIL_FILE.FILE_MULTI_SELECTION_DIALOG(directory_name => NULL,
    file_name => NULL,
    file_filter => NULL,
    title => NULL,
    dialog_type => OPEN_FILE,
    select_file => TRUE);
    The user will select the files they want to upload and close the file dialog box. Most of the time this completes successfully and the process is carried out at expected ... no problems. Occassionally, however, when the file dialog box is closed and the user is returned to the form they can no longer click in text fields and edit their contents. They can still click buttons and change list items but the text fields, for whatever reason, can not be changed. When in this state, they can navigate to another form and experience the same problem - they can't edit any text fields.
    I have captured the java console messages for a successful file selection versus an unsuccessful one (servernames, etc have been edited out for security purposes) - I have labelled and pasted those groups of messages below.
    This problem has been driving us mad because we can't seem to nail down under what scenario the problem occurs - the type, size, location, etc of the file does not seem to matter and this issue could happen the first time you select a file or the 50th time you select one ... it seems completely random.
    Can anyone help? Any suggestions?
    Successful file selection:
    2007-Jan-31 07:05:25.386 WUF[setProperty()] Setting property WUF_GFN_DIRNAME to false
    2007-Jan-31 07:05:25.386 WUF[setProperty()] Setting property WUF_FILENAME to false
    2007-Jan-31 07:05:25.386 WUF[setProperty()] Setting property WUF_FILTER to false
    2007-Jan-31 07:05:25.386 WUF[setProperty()] Setting property WUF_GFN_MESSAGE to false
    2007-Jan-31 07:05:25.386 WUF[setProperty()] Setting property WUF_GFN_MULTISELECT to TRUE
    2007-Jan-31 07:05:25.386 WUF[getProperty()] Getting property WUF_GFN_OPENFILE
    2007-Jan-31 07:05:25.511 WUF[gfnDialog()] Open File mode
    Modality pushed
    Modality popped
    2007-Jan-31 07:05:28.229 WUF[gfnDialog()] Multiple selection result: \\xxxxxxx\Users3\JHenry\Home\CURRENT_PROJECTS\
    A01161.0001.pdf
    2007-Jan-31 07:05:28.229 WUF[getProperty()] Value of WUF_GFN_OPENFILE=\\xxxxxxx\Users3\JHenry\Home\CURRENT_PROJECTS\
    A01161.0001.pdf
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    2007-Jan-31 07:05:28.229 WUF[setProperty()] Setting property WUF_FILENAME to \\xxxxxxx\Users3\JHenry\Home\CURRENT_PROJECTS\A01161.0001.pdf
    2007-Jan-31 07:05:28.229 WUF[setProperty()] Setting property WUF_FILE_ATTRIBUTE to 6
    2007-Jan-31 07:05:28.229 WUF[getProperty()] Getting property WUF_FILE_ATTRIBUTE
    2007-Jan-31 07:05:28.229 WUF[getProperty()] Value of WUF_FILE_ATTRIBUTE=19634
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Loading Root CA certificates from C:\PROGRA~1\Java\J2RE14~1.2_0\lib\security\cacerts
    Loaded Root CA certificates from C:\PROGRA~1\Java\J2RE14~1.2_0\lib\security\cacerts
    Loading Https Root CA certificates from C:\PROGRA~1\Java\J2RE14~1.2_0\lib\security\cacerts
    Loaded Https Root CA certificates from C:\PROGRA~1\Java\J2RE14~1.2_0\lib\security\cacerts
    Loading JPI Https certificates from C:\Documents and Settings\jjhenry\Application Data\Sun\Java\Deployment\security\deployment.jssecerts
    Loaded JPI Https certificates from C:\Documents and Settings\jjhenry\Application Data\Sun\Java\Deployment\security\deployment.jssecerts
    Loading certificates from JPI session certificate store
    Loaded certificates from JPI session certificate store
    Checking if certificate is in JPI session certificate store
    Checking if Https certificate is in JPI permanent certificate store
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    2007-Jan-31 07:08:32.489 WUT[getProperty()] Getting property WUT_MAX_BYTES
    2007-Jan-31 07:08:32.505 WUT[getProperty()] Value of WUT_MAX_BYTES=16384
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    2007-Jan-31 07:08:32.598 WUF[setProperty()] Setting property WUF_FILENAME to \\xxxxxxx\Users3\JHenry\Home\CURRENT_PROJECTS\A01161.0001.pdf
    2007-Jan-31 07:08:32.598 WUF[setProperty()] Setting property WUF_FILE_ATTRIBUTE to 2
    2007-Jan-31 07:08:32.598 WUF[getProperty()] Getting property WUF_FILE_ATTRIBUTE
    2007-Jan-31 07:08:32.645 WUF[getProperty()] Value of WUF_FILE_ATTRIBUTE=TRUE
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    2007-Jan-31 07:08:32.645 WUF[setProperty()] Setting property WUF_FILENAME to \\xxxxxxx\Users3\JHenry\Home\CURRENT_PROJECTS\A01161.0001.pdf
    2007-Jan-31 07:08:32.645 WUF[setProperty()] Setting property WUF_FILE_ATTRIBUTE to 4
    2007-Jan-31 07:08:32.645 WUF[getProperty()] Getting property WUF_FILE_ATTRIBUTE
    2007-Jan-31 07:08:32.645 WUF[getProperty()] Value of WUF_FILE_ATTRIBUTE=FALSE
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    2007-Jan-31 07:08:32.645 WUT[getProperty()] Getting property WUT_STATUS
    2007-Jan-31 07:08:32.645 WUT[getProperty()] Value of WUT_STATUS=FREE
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    2007-Jan-31 07:08:32.661 WUT[setProperty()] Setting property WUT_FILE_INFO to \\Oxxxxxxx\Users3\JHenry\Home\CURRENT_PROJECTS\A01161.0001.pdf|0|S|Y|Upload in progress|Please wait
    2007-Jan-31 07:08:32.661 WUT[getProperty()] Getting property WUT_FILE_INFO
    2007-Jan-31 07:08:32.661 WUT[getProperty()] Value of WUT_FILE_INFO=19634|2
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    2007-Jan-31 07:08:32.989 WUT[UploadAgent()] File Opened:\\xxxxxxx\Users3\JHenry\Home\CURRENT_PROJECTS\A01161.0001.pdf
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    2007-Jan-31 07:08:33.51 WUT[UploadAgent.getDataInt()] File Closed
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Connecting https://xxxxxxxx/forms/lservlet;jsessionid=0a95476230d6ea59ff53e5cb4b43979bd0fc0d5a0a61.e38MbhmRbN4Qb40LaxmSbh4Pa3qLe6fznA5Pp7ftolbGmkTy with no proxy
    Unsuccessful file selection:
    2007-Jan-31 07:02:24.376 WUF[setProperty()] Setting property WUF_GFN_DIRNAME to false
    2007-Jan-31 07:02:24.376 WUF[setProperty()] Setting property WUF_FILENAME to false
    2007-Jan-31 07:02:24.376 WUF[setProperty()] Setting property WUF_FILTER to false
    2007-Jan-31 07:02:24.376 WUF[setProperty()] Setting property WUF_GFN_MESSAGE to false
    2007-Jan-31 07:02:24.376 WUF[setProperty()] Setting property WUF_GFN_MULTISELECT to TRUE
    2007-Jan-31 07:02:24.376 WUF[getProperty()] Getting property WUF_GFN_OPENFILE
    2007-Jan-31 07:02:24.766 WUF[gfnDialog()] Open File mode
    2007-Jan-31 07:02:27.969 WUF[gfnDialog()] Multiple selection result: \\xxxxxxxx\Users3\JHenry\Home\JHENRY-CUSTOM\
    At-Ease-LE-Print-C10326820.jpg
    2007-Jan-31 07:02:27.969 WUF[getProperty()] Value of WUF_GFN_OPENFILE=\\xxxxxxxx\Users3\JHenry\Home\JHENRY-CUSTOM\
    At-Ease-LE-Print-C10326820.jpg
    2007-Jan-31 07:02:27.985 WUF[setProperty()] Setting property WUF_FILENAME to \\xxxxxxxx\Users3\JHenry\Home\JHENRY-CUSTOM\At-Ease-LE-Print-C10326820.jpg
    2007-Jan-31 07:02:27.985 WUF[setProperty()] Setting property WUF_FILE_ATTRIBUTE to 6
    2007-Jan-31 07:02:27.985 WUF[getProperty()] Getting property WUF_FILE_ATTRIBUTE
    2007-Jan-31 07:02:27.985 WUF[getProperty()] Value of WUF_FILE_ATTRIBUTE=19257
    2007-Jan-31 07:03:23.483 WUT[getProperty()] Getting property WUT_MAX_BYTES
    2007-Jan-31 07:03:23.483 WUT[getProperty()] Value of WUT_MAX_BYTES=16384
    2007-Jan-31 07:03:23.593 WUF[setProperty()] Setting property WUF_FILENAME to \\xxxxxxxx\Users3\JHenry\Home\JHENRY-CUSTOM\At-Ease-LE-Print-C10326820.jpg
    2007-Jan-31 07:03:23.593 WUF[setProperty()] Setting property WUF_FILE_ATTRIBUTE to 2
    2007-Jan-31 07:03:23.593 WUF[getProperty()] Getting property WUF_FILE_ATTRIBUTE
    2007-Jan-31 07:03:23.624 WUF[getProperty()] Value of WUF_FILE_ATTRIBUTE=TRUE
    2007-Jan-31 07:03:23.624 WUF[setProperty()] Setting property WUF_FILENAME to \\xxxxxxxx\Users3\JHenry\Home\JHENRY-CUSTOM\At-Ease-LE-Print-C10326820.jpg
    2007-Jan-31 07:03:23.624 WUF[setProperty()] Setting property WUF_FILE_ATTRIBUTE to 4
    2007-Jan-31 07:03:23.624 WUF[getProperty()] Getting property WUF_FILE_ATTRIBUTE
    2007-Jan-31 07:03:23.624 WUF[getProperty()] Value of WUF_FILE_ATTRIBUTE=FALSE
    2007-Jan-31 07:03:23.640 WUT[getProperty()] Getting property WUT_STATUS
    2007-Jan-31 07:03:23.640 WUT[getProperty()] Value of WUT_STATUS=FREE
    2007-Jan-31 07:03:23.640 WUT[setProperty()] Setting property WUT_FILE_INFO to \\xxxxxxxx\Users3\JHenry\Home\JHENRY-CUSTOM\At-Ease-LE-Print-C10326820.jpg|0|S|Y|Upload in progress|Please wait
    2007-Jan-31 07:03:23.640 WUT[getProperty()] Getting property WUT_FILE_INFO
    2007-Jan-31 07:03:23.640 WUT[getProperty()] Value of WUT_FILE_INFO=19257|2
    2007-Jan-31 07:03:23.983 WUT[UploadAgent()] File Opened:\\xxxxxxxx\Users3\JHenry\Home\JHENRY-CUSTOM\At-Ease-LE-Print-C10326820.jpg
    2007-Jan-31 07:03:24.46 WUT[UploadAgent.getDataInt()] File Closed

    One of the differences I've noticed is that the two messages:
    Modality pushed
    Modality popped
    do not appear when the file selection is unsuccessful ....
    Unfortunately I don't have the experience necessary to determine what kind, if any, of error/issue this suggests ... can anyone help with this piece of the puzzle?

  • Flex compilation error - please help

    Hi all,
    I have a model with a nested iview and multiple popup iviews.
    It stopped deploying  after i changed few system aliases using the aliases manager.
    given below is the error I am getting.
    Error in compiling Flex application: Error 1004: Operator '=' must be followed by an operand
    Can anyone help me out?
    Thanks in advance
    Shobin

    Hi,
    I am using VC 7.0 itself.
    This was due to some error happened when I tried to change few system aliases.
    I deleted the data services and recreated again.
    Now it works.
    Thanks a lot for your reply.
    Shobin

  • Very strange itunes behaviour: please help!

    OK. So I downloaded uniblue's 'speed up my PC' software which is highly unadvisable because quite apart from it having little noticeable effect, it appears to have really screwed up my itunes, albeit more in an annoying way than a disastrous way.
    On attempting to open itunes I am presented with a small box (Windows Xp SP3 by the way.) which says "Importing 'iTunes Music Library.xml'..." This takes about 3-4 minutes. Then the box changes to "Organizing Files" and appears to scan through my music very quickly - about 5-10 seconds.
    Then I get an error message reading: "The file 'iTunes Library.itl' does not appear to be a valid iTunes library file. iTunes has attempted to recover your itunes library and renamed this file to 'iTunes Library (Damaged).itl'
    So I press 'OK' (the only option) and itunes opens, and begins "creating artwork thumbnails" and "Determining gapless playback information" each of which takes aprox. 5 minutes.
    While this is going on another error message appears: "The itunes library file cannot be saved. An unknown error occurred (-1450)." Again 'OK' is the only option. This message sometimes appears multiple times.
    At this point I closed down itunes, uninstalled it, defragged my hard drive, deleted the itunes file and replaced it with a backup I keep on my external hard drive, then reinstalled it.
    Hallelujah! It worked fine again, opening without any problems, with all my playlist and playcount data safe. I thought I had solved my problem. However, after the third reboot itunes reverted to its old behaviour (starting from paragraph two) again. I have now been through this entire cycle about three times and am getting very fed up.
    If anyone could explain to me why this is happening and how to fix it - I wouldn't be able to thankyou enough.

    Praise be to Lord above! I have fixed it! And because I'm a nice guy and wouldn't want anyone else to go through the same frustration - I'm going to tell you how...
    It was a problem with the registry that was causing the issue and funny old thing - uniblue's 'Registry Booster' solved the issue. It's ironic that software from the same company was used to solve the problem I know...I had almost decided to uninstall all uniblue products, but decided to run one last scan with registry booster to see what happened....So just to sum up, this is how to solve the above issue:
    1. Re-create/rebuild your library as detailed in this article: http://support.apple.com/kb/HT1451 or replace itunes folder with backup. Delete any corrupted/damaged files.
    This alone should solve many issues but if you keep getting repeated corruption problems like I did then the problem seems to be within the REGISTRY.
    2. To solve the registry error - I ran uniblue's 'Registry Booster' programme. I have no idea how to fix the registry manually. Sorry.
    Message was edited by: andy525

  • Very strange color phenomenon - Please help!

    Hello,
    I just got a new iMac and moved all my software and files via firewire account transfer from my Mac Book to the new Mac. Everything works well, as expected, but when I open my Domain.sites2 File (I have iWeb08) on the iMac, a strange color phenomenon occurs: Identical colors specified for page background and placed shapes on the background look differently in iWeb, but when published, they look the same.
    When I open the identical file on my Mac Book, the colors look the same (and publish the same of course). I've tried deleting the color shapes and creating them new, changing background color back and forth, but still: a color applied to the background of a page and a shape ontop of that page looks dramatically different. A purple looks intensive in the background, that same purple applied to a shape looks a lot mor pastell-ish and light, almost as if the color was converted to cmyk when applied to the shape, and left in vibrant RGB in the background.
    Now this means that on the iMac in iWeb I cannot edit my site any more. I don't see what I do. If I make the colors for page background and shapes look identical in iWeb (or even specify identical color values), and publish, they look differently in the browser (I checked in multiple browsers).
    I checked everthing for hidden transparency or cmyc conversion options that might be accidentally selected but can't find anything. I changed my monitor color settings, but that doesn't seem to be it, either.
    What is happening to the color and why do colors on shapes look different than color in the background? Help. What am I doing wrong?
    Thanks
    Petra

    Could be that monitor gamma, when calibrating the monitor, is different on old and new system.
    Not that it should matter, but both browsers and iWEB handles colors in strange ways and sometimes use the Monitor color profile instead of for instance the sRGB color profile.
    See also thread about text color http://discussions.apple.com/thread.jspa?threadID=1221776&tstart=0&messageID=576 9551#5769551
    Tomas
    Message was edited by: Tomas Jonsson

  • Very Annoying Browser Error - Please Help

    Hello,
    I  have Acrobat Pro CS3 set as default for reading pdf's, because I often  have to edit the pdf's I open. This works fine with pdf's I open from  disk.
    However, it seems that somehow Acrobat Pro has taken  over as default for opening pdf's inside browsers as well. My plugins  list in FF shows "Adobe Acrobat 9.1.0.163 Adobe PDF Plug-In For Firefox  and Netscape". Whenever I navigate to a page which is a pdf, the entire  Acrobat Pro external program opens, displaying a blank page and an error  message popup - when I click OK on the error, the application closes  and the pdf opens in the browser window - sometimes this requires  several tries before the pdf opens in the browser.
    Here is an image showing the error message and the FF plugin installed: http://terraffirma.com/images/PDF-error.jpg
    I have Reader 10 installed on the system, and I updated from 9 this week - it did not correct this.
    Any  suggestions on how to set my system up with Acrobat Pro as default for  opening pdf's from disk, and having browser directly use a plugin?
    Thank you.

    bumped.. not forgotton..
    Can you try this ol' cheasnut..
    Download this file on your phone's browser
    http://chris.intrepid.cx/N900/debug.sh
    Save the file in the Documents folder on your phone
    Now, open an X terminal and run this command
    sh MyDocs/.documents/debug.sh
    When it finishes (it will take 30 mins or more!.. might be worth waiting until you have a charger handy!) it will show you an email address., make a note of it..
    On the phone you'll find a file called debug.tgz.. Using a PC transfer the file debug.tgz off and email it to that email address.

  • Re: Compiling Error, please help

    it worked, thanks

    Please check whether you have saved your file properly. If u have written your file in notepad please save the file with the filename within quotes eg: "asn1.java" otherwise your java file will be saved as text file.
    Check again.
    Kutty

  • Very new to java please help

    i'm very new to java and i'm getting an error in my application. i took 4 applications that compiled and worked separatly and i tried to combine them into one application. i'm getting the error: unreported exception java.io.IOException; must be caught or declared to be thrown, in lines 73,78,83,88,120,146,149,152,155 in the and it points at the keyboard.readLine() but everything i've tried just gives me more errors. please help anything and everything will be greatly appreciated. here it is, sorry about format i dunno how to straighten it in here:
    // ^ ^
    //               (0)(0) A Happy Piggy Application
    // Problems: 2.6,2.8,2.9,2.12 (oo)
    // An application finds the total number of hours, minutes, & seconds, finds the distance
    // between two points, finds the volume and surface area of a sphere, and adds up the change
    // in a jar. First, the total hours, minutes, and seconds problem.
    import java.io.*;
    import java.text.DecimalFormat;
    import java.text.NumberFormat;
    public class twoptsix
         static BufferedReader keyboard = new BufferedReader(new InputStreamReader(System.in));
         static PrintWriter screen = new PrintWriter(System.out, true);
         public static void main (String[] args) throws IOException
              double hoursa, minutesa, secondsa;
              String hours;
              System.out.print ("Please enter a number of hours: ");
    hours = keyboard.readLine();
    hoursa = Double.parseDouble(hours); //asks programmer friendly user to enter hours
    String minutes;
    System.out.print ("Please enter a number of minutes: ");
    minutes=keyboard.readLine();
    minutesa = Double.parseDouble(minutes); //asks programmer friendly user to enter minutes
    String seconds;
    System.out.print ("Pretty please enter a number of seconds: ");
    seconds = keyboard.readLine();
    secondsa = Double.parseDouble(seconds); //asks programmer friendly user to enter seconds
    double allseconds;
    allseconds = (hoursa * 3600) + (minutesa * 60) + secondsa; //adds up all the seconds of the time entered
    System.out.println ("You have: " + hours + " hours..."); //displays hours
    System.out.println ("" + minutes + " minutes..."); //displays minutes
    System.out.println ("and " + seconds + " seconds..."); //displays seconds
              System.out.println ("to get whatever you need to done!"); //witty attempt at humor
    System.out.println ("The total amount of seconds is: " + allseconds + " seconds."); //displays total seconds
    // An application that finds the distance between two points when the points
    // are given by the user.
              double x1, x2, y1, y2, total, distance;
              String xa;
              System.out.print ("Please enter the 'x' coordinate of first point: ");
              xa = keyboard.readLine();
              x1 = Double.parseDouble(xa); //asks programmer friendly user to enter first x value
              String ya;
              System.out.print ("...also need the 'y' coordinate of first point: ");
              ya = keyboard.readLine();
              y1= Double.parseDouble(ya); //asks programmer friendly user to enter first y value
              String xb;
              System.out.print ("...and the 'x' coordinate of the second point: ");
              xb = keyboard.readLine();
              x2 = Double.parseDouble(xb); //asks programmer friendly user to enter second x value
              String yb;
              System.out.print ("...don't forget the 'y' coordinate of the second point: ");
              yb = keyboard.readLine();
              y2 = Double.parseDouble(yb); //asks programmer friendly user to enter second y value
              total = Math.pow(x2 - x1, 2.0) + Math.pow(y2 - y1, 2.0); //squares the differences of values
              distance = Math.sqrt(total); //finds the square root of the sum of the differences of the values
              System.out.print ("E=mc^2...oh and,");
              System.out.print ("the distance between point (" + xa +"," + ya +") and point("+
              xb + "," + yb + ") is : " + distance);
    // An application that takes the radius of a sphere and finds and prints
    // the spheres volume and surface area.
              double radius,volume,area;
              String rad;
              System.out.print("Please enter the radius of a sphere: ");
              rad = keyboard.readLine();
              radius = Double.parseDouble(rad); //asks programmer friendly user to enter the radius of a sphere
    DecimalFormat fmt = new DecimalFormat ("0.####");
              volume = ((4 * Math.PI * Math.pow(radius,3.0)) / 3) ;
              System.out.println (" The sphere has a volume of:" + fmt.format(volume)); //finds and displays volume
              area = ( 4 * Math.PI * Math.pow(radius, 2.0)) ;
              System.out.print (" The Surface Area of the sphere is: " + fmt.format(area)); //finds and displays surface area
    // An application that finds the total, in dollars and cents, of a number of quarters,
    // nickels, dimes, and pennies in your piggy bank.
              int pennies, nickels, dimes, quarters;
              double money1;
              screen.println("Empty your piggy bank and count the change, how many quarters ya have?: ");
              int q = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of quarters
              screen.println("How many dimes?: ");
              int d = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of dimes
              screen.println("How many nickels?: ");
              int n = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of nickels
              screen.println("How many pennies?: ");
              int p = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of pennies
              NumberFormat money = NumberFormat.getCurrencyInstance();
              money1 = (.25 * q) + (.1 * d) + (.05 * n) + (.01 * p);
              screen.println("You're rich! Total, you've got: " + money.format(money1));//finds and displays total money

    Ok here is the working code as one long function:
    // ^ ^
    // (0)(0) A Happy Piggy Application
    // Problems: 2.6,2.8,2.9,2.12 (oo)
    // An application finds the total number of hours, minutes, & seconds, finds the distance
    // between two points, finds the volume and surface area of a sphere, and adds up the change
    // in a jar. First, the total hours, minutes, and seconds problem.
    import java.io.*;
    import java.text.DecimalFormat;
    import java.text.NumberFormat;
    public class twoptsix
        static BufferedReader keyboard = new BufferedReader(new InputStreamReader(System.in));
        static PrintWriter screen = new PrintWriter(System.out, true);
        public static void main (String[] args) throws IOException
    double hoursa, minutesa, secondsa;
    String hours;
    System.out.print ("Please enter a number of hours: ");
    hours = keyboard.readLine();
    hoursa = Double.parseDouble(hours); //asks programmer friendly user to enter hours
    String minutes;
    System.out.print ("Please enter a number of minutes: ");
    minutes=keyboard.readLine();
    minutesa = Double.parseDouble(minutes); //asks programmer friendly user to enter minutes
    String seconds;
    System.out.print ("Pretty please enter a number of seconds: ");
    seconds = keyboard.readLine();
    secondsa = Double.parseDouble(seconds); //asks programmer friendly user to enter seconds
    double allseconds;
    allseconds = (hoursa * 3600) + (minutesa * 60) + secondsa; //adds up all the seconds of the time entered
    System.out.println ("You have: " + hours + " hours..."); //displays hours
    System.out.println ("" + minutes + " minutes..."); //displays minutes
    System.out.println ("and " + seconds + " seconds..."); //displays seconds
    System.out.println ("to get whatever you need to done!"); //witty attempt at humor
    System.out.println ("The total amount of seconds is: " + allseconds + " seconds."); //displays total seconds
    // }  <----- MAIN FUNCTION USED TO END HERE!!!
    //but we want to keep going so remove the bracket!
    // An application that finds the distance between two points when the points
    // are given by the user.
    // {  <-- other function used to start here, but now it continues
    double x1, x2, y1, y2, total, distance;
    String xa;
    System.out.print ("Please enter the 'x' coordinate of first point: ");
    xa = keyboard.readLine();
    x1 = Double.parseDouble(xa); //asks programmer friendly user to enter first x value
    String ya;
    System.out.print ("...also need the 'y' coordinate of first point: ");
    ya = keyboard.readLine();
    y1= Double.parseDouble(ya); //asks programmer friendly user to enter first y value
    String xb;
    System.out.print ("...and the 'x' coordinate of the second point: ");
    xb = keyboard.readLine();
    x2 = Double.parseDouble(xb); //asks programmer friendly user to enter second x value
    String yb;
    System.out.print ("...don't forget the 'y' coordinate of the second point: ");
    yb = keyboard.readLine();
    y2 = Double.parseDouble(yb); //asks programmer friendly user to enter second y value
    total = Math.pow(x2 - x1, 2.0) + Math.pow(y2 - y1, 2.0); //squares the differences of values
    distance = Math.sqrt(total); //finds the square root of the sum of the differences of the values
    System.out.print ("E=mc^2...oh and,");
    System.out.print ("the distance between point (" + xa +"," + ya +") and point("+
         xb + "," + yb + ") is : " + distance);
    //second function used to end here...
    //} <--- COMMENT OUT BRACKET SO WE CONTINUE
    // An application that takes the radius of a sphere and finds and prints
    // the spheres volume and surface area.
    //{ <--- ANOTHER ONE TO COMMENT OUT
    double radius,volume,area;
    String rad;
    System.out.print("Please enter the radius of a sphere: ");
    rad = keyboard.readLine();
    radius = Double.parseDouble(rad); //asks programmer friendly user to enter the radius of a sphere
    DecimalFormat fmt = new DecimalFormat ("0.####");
    volume = ((4 * Math.PI * Math.pow(radius,3.0)) / 3) ;
    System.out.println (" The sphere has a volume of:" + fmt.format(volume)); //finds and displays volume
    area = ( 4 * Math.PI * Math.pow(radius, 2.0)) ;
    System.out.print (" The Surface Area of the sphere is: " + fmt.format(area)); //finds and displays surface area
    // } <----- COMMENTED OUT FOR THE SAME REASON
    // An application that finds the total, in dollars and cents, of a number of quarters,
    // nickels, dimes, and pennies in your piggy bank.
    //{ <----AND ANOTHER
    int pennies, nickels, dimes, quarters;
    double money1;
    screen.println("Empty your piggy bank and count the change, how many quarters ya have?: ");
    int q = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of quarters
    screen.println("How many dimes?: ");
    int d = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of dimes
    screen.println("How many nickels?: ");
    int n = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of nickels
    screen.println("How many pennies?: ");
    int p = (new Integer(keyboard.readLine())).intValue();//asks programmer friendly user to enter a number of pennies
    NumberFormat money = NumberFormat.getCurrencyInstance();
    money1 = (.25 * q) + (.1 * d) + (.05 * n) + (.01 * p);
    screen.println("You're rich! Total, you've got: " + money.format(money1));//finds and displays total money
    }P.S. To make the code formatted better put [ code ] before and [ /code ] after. It's not perfect, but a little better...

  • Windows - No Disk Error - Please help!

    Windows - No Disk Error - Please help!
    Hi,
    I have the following set up:
    * Lenovo T-61p
    * Windows XP Pro, SP 3
    * HP Photosmart 8250 printer (with nothing plugged into the various card readers, and USB slot in the printer)
    I am getting the following error:
    Windows - No Disk
    Exception Processing Message 0xc0000013 Parameters 0x75CE023C
    0x84C40C84 0x75CE023C
    I have done a lof experimenting and thru process of  elimination, and believe I have determined that this only happens when the HP Photosmart 8250 printer is plugged in to the USB slot of the computer.
    I can stop it from happening by safely removing hardware, and removing the drive that the 8250 creates on your computer when you plug it in.  In my case, this is drive E.  I'm guessing if there was something in the the various card readers, and USB slot in the printer, that's what those would be, but I don't those use those functions of the printer.
    I understand there is more at work than simply the printer, because I did not used to get this error, so some software changed as well, that is scanning all ports, and finding a drive that has no disk, and producing the error.
    A simple google search finds a lot people all over the world having this problem, and are solving it in different ways, because the suspected source is different: Norton, HP, etc.
    I have tried everything I have read, and the only thing that works was my own idea, of manually safely removing the drive the printer creates each time I plug in the printer.
    Anyone every any better, more permanent solutions?  Or know what the real root of the problem is?  What is scanning all the drives and being showing an error message because it found an empty drive?
    Thanks and Happy Holidays/New Year!

    I've been getting the same error on my 4G nano for the past week. I've had my nano for about a month and the first few weeks were fine. Tried it on 2 different computers (Vista and XP) and same problem. Tried it on a 3rd (XP) and it started ok. Problem started coming back after a day.
    I was able to find a quick fix though. I noticed that sometimes the message says something like "iexplore.exe... no disk..." even if I don't even use IE. What I do is end iexplore.exe on task manager before running iTunes and syncing my nano. I don't get the error whenever I do this, but one drawback is that the contents of my nano suddenly pops up in a window - even when disk use is not enabled.
    I've reset/restored my nano dozens and dozens of times to make sure it's clean. Leads me to believe it's a driver issue. Either that or I have a friggin malware problem I can't seem to find.
    I'll be posting updates every now and then. I'm no expert so I'm hoping an Apple expert also steps in to give some input.

  • My ipod generation 5 will not come out of recovery mode. i was simply updating my software and this happened. it will not let me restore it comes up with and error. please help, thanks.

    my ipod generation 5 will not come out of recovery mode. i was simply updating my software and this happened. it will not let me restore it comes up with and error. please help, thanks.

    Hey erinoneill24,
    Thanks for using Apple Support Communities.
    Sounds like you can't update your device. You don't mention an error that it gives you. Take a look at both of these articles to troubleshoot.
    iPod displays "Use iTunes to restore" message
    http://support.apple.com/kb/ts1441?viewlocale=it_it
    If you can't update or restore your iOS device
    http://support.apple.com/kb/HT1808?viewlocale=de_DE_1
    If you started your device in recovery mode by mistake, restart it to exit recovery mode. Or you can just wait—after 15 minutes the device will exit recovery mode by itself.
    Have a nice day,
    Mario

Maybe you are looking for

  • External Cherry keyboard on Macbook Pro

    Hi, I've bought me a new macbook pro to develop on. Since it doesn't have a numeric, I bought me an 'Cherry keyboard'. Yet I can't get it to work. It is an azerty. I can type on it but 'special' keys like the @, \, €, ... are all on different places.

  • PO history report

    Dear Experts , I want a PO " single screen " history report that will tell me the deliveries made against the PO. Is it available in std SAP?? Regards Anis

  • How to make delta in BI 7.0

    hi guys, i am creating BI query for vakpa table but unable to find the delta as the change date is in history table of chdr , is there any way i can create my own delta without doing full upload bcoz the amount fo record is almost 2 million

  • Video file name on listbutton label

    I'm playing FMS videos from XML. but no need visible filelist path on listbutton.label. How can i show only video file name on listbutton.label ; <?xml version="1.0" encoding="utf-8"?> <XML>   <FileList>files/store1/2013/1/2/15/video1</FileList>   <F

  • [SOLVED] KDE konsole display looks broken after upgrading.

    Hi, I just upgraded konsole (:: Replace kdebase-konsole with extra/konsole? [Y/n] ) so it's konsole 2.14.2 -> 3.0.1, and there is many display problems. For example, fonts are not monospaced, the cursor is not aligned with the text, when I execute "l