Hi James,
You could use two techniques.
1) Use a combination of System.Diagnostics.Process and the API's
SetForegroundWindow and ShowWindow.
you can find an example of that here:
http://www.cshrp.net/content.aspx?showID=952
2) Reference Microsoft.VisualBasic.DLL and use
Microsoft.VisualBasic.Interaction.AppActivate("name");
--
Patrik L?wendahl
www.cshrp.net - 'Elegant code by witty programmers'
> In Visual Basic you use AppActivate when you want to set the focus on
> another application. Does anyone know what the equivalent function call
[quoted text clipped - 3 lines]
>
> James J.