It might be that you need to enclose the text call in ""'s.
e.g. this:
Runtime.getRuntime().exec( field.getText() );
becomes this:
Runtime.getRuntime().exec( "\"" + field.getText() + "\"");Kevin =========================================================================== To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff JAVA3D-INTEREST". For general help, send email to [EMAIL PROTECTED] and include in the body of the message "help".
