Re: Clear Screen command



Chris,

> public void clearScreen()
> {
> final int NUM_LINES = 100; // Just to be safe
> for (int i = 0; i < NUM_LINES; i++) System.out.println();
> }

this does it - thanks :o)

Best

Frank


.