I am new at this stuff. 
I tried a small program( at the bottom ) and it doesn't stop running . 

There is a Ctrl-C key at the Palm Pilot??? I need to stop the Application.

How can I do it???

Thanks 

Nicholas






public Apli()
{

        Graphics.clearScreen();
        botton.paint();
        field1.paint();

}// end constructor

public static void main(String[] args) 
{
        (new Apli()).register(WANT_SYSTEM_KEYS);
}// end main

public void penDown(int x,int y)
{
        int i = Graphics.drawString("Hello",
                             x,
                             y);
        Graphics.playSound(Graphics.SOUND_CLICK);
        Graphics.drawLine(1,
                            1,
                            x,
                            y,
                            Graphics.PLAIN);


        if (boton.pressed(x,y))
        {
                String elemento = field1.getText();
                lista.append(elemento);
        }// end if
}// end penDown

}// end class

Reply via email to