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
- Re: How can I Break a Running Application? Cranwell, Nicolas
- Re: How can I Break a Running Application? Dave Lippincott
- RE: How can I Break a Running Application? Cranwell, Nicolas
- RE: How can I Break a Running Application? Wang, Steve
- RE: How can I Break a Running Application? Walter Reid
- RE: How can I Break a Running Application? Terry Carnes
- RE: How can I Break a Running Application? Cranwell, Nicolas
- Re: How can I Break a Running Application? John Marshall
- RE: How can I Break a Running Application? Cranwell, Nicolas
- RE: How can I Break a Running Application? jesse_donaldson
- Re: How can I Break a Running Application? Gordon W. Gifford, Jr.
