Search:

Type: Posts; User: savvas

Search: Search took 0.07 seconds.

  1. Re: This is my code and i would like to ask a question..

    Well thx i did that and it worked thx for the advice man .
  2. This is my code and i would like to ask a question..

    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.util.Random;
    import java.applet.*;
    public class SimpleApplet extends JApplet
    {
    JButton ng;
    JPanel...
  3. Thread: I CANT COMPILE

    by savvas
    Replies
    3
    Views
    1,110

    [SOLVED] Re: I CANT COMPILE

    Problem solved thx
  4. Thread: I CANT COMPILE

    by savvas
    Replies
    3
    Views
    1,110

    [SOLVED] Re: I CANT COMPILE

    Well yes the constructor i call yes there is in the Box class. The Box construtctor takes a double x and it creates a cube. all i want to do is to prevent the Box to create a cube if i a negative...
  5. Thread: I CANT COMPILE

    by savvas
    Replies
    3
    Views
    1,110

    [SOLVED] I CANT COMPILE

    well guys this is my code

    public class MyBox extends Box
    {
    public MyBox(double x)
    {
    if(this.x >0){
    super(x);
    }
    }
Results 1 to 5 of 5