Search:

Type: Posts; User: bryanOnInternet

Search: Search took 0.19 seconds.

  1. Replies
    2
    Views
    1,277

    Re: error in code?

    really sorry for the really late reply. Thanks for the guideline provided on both the question and code quote(just knew about the code quote). :)
  2. Replies
    2
    Views
    1,277

    error in code?

    import java.awt.*;
    import java.applet.Applet;

    public class displayImage extends Applet {
    Image img;

    public void init(){
    img=getImage(getCodeBase(),"runningman.jpg" );
    }
  3. Re: difference between Java Aplet and JavaScript?

    okay, I think I get a clearer picture of this. thank you very much. :)
  4. Re: difference between Java Aplet and JavaScript?

    Now let's talk about how Java and JavaScript differ. The main difference is that Java
    can stand on its own while JavaScript must (primarily) be placed inside an HTML document
    to function. Java is...
  5. difference between Java Aplet and JavaScript?

    Hello everyone, I am currently learning about applet in Java (actually quite new to this dimension). I have been searching some information about the applet and tried some coding regarding applet...
  6. Re: Does MessagePanel class/ component exist in Java awt/ swing?

    got it. :) really thanks for your help, kevin
  7. Re: Does MessagePanel class/ component exist in Java awt/ swing?

    I got it from a reference book in which I am trying to learn Java from. Yeap, I looked for the messagePanel in the API doc, but it seems that I couldn't find it.
  8. Re: Does MessagePanel class/ component exist in Java awt/ swing?

    /*
    * It displays a message at certain location (x,y) in which both message and location is obtained from a HTML source
    */
    import java.awt.*;
    import javax.swing.*;
    import java.awt.Font;...
  9. Does MessagePanel class/ component exist in Java awt/ swing?

    Hello, there I am quite new to Java programming and am currently working on JApplet in Java. Just wondering that is there any MessagePanel class/component (something similar to JPanel class)in java...
Results 1 to 9 of 9