Hi;
Is there a way when calling Process.Start(), or on it's return, to use the
Process object returned to make the app it started the selected application
and move it above the app that made this call?
--
thanks - dave
david_at_windward_dot_net
http://www.windwardreports.com
Cubicle...
more >>
create a J# windows applicaion.add a button , a label and two textboxes to
form and paste this code into the buttons event handler:
private void button1_Click(Object sender, System.EventArgs e)
{
label1.set_Text(Float.toString(
Float.parseFloat(textBox1.get_Text())
*
Float.pars...
more >>