16 thoughts on “Learn Java part 9”

  1. Hey Thanks for the code, it helped.

    I had only one error it couldn’t find java.awt.frame cause I didn’t capitalise FRAME.

    can i ask why you used args instead of arg??

  2. import java.awt.Frame;
    import java.awt.Label;
    public class HowdyWindow extends Frame {
    public static void main(String args[]) {
    new HowdyWindow();
    }
    HowdyWindow() {
    Label label;
    label = new Label(“Howdy!”);
    add(label);
    pack();
    show();
    }
    }

    I figured out the code 😀 study this!

  3. could you edit all your descriptions ans copy/paste code cos it would help…im using enclipse thing and it reallyhelps me accept your codes i can barely guess cos id seen that one before…i cant guess anymore of them or watch the rest of the videos of this tut cos there all too hard to read even with “&fmt=18” on end to higher quality.

    please edit all vids and paste in description

  4. i’m not understanding ? i got a ide and now i see him using the command line and i don’t feel the same i can’t keep up with him using some thing totally different

  5. first sorry for reply late . 2nd i got those lessones from my friend and i wanted to share them with other people really i got those lessones helpful for my study and i be come like this subject(java) so plz for everyone try to understand and try to gess the examples i know they are not claer but i can’t change anything. for me i’m tring to gess the examples also

    thx a lot to all

Leave a Comment