Deploying Windows Appication in J#

Hi,

I'm looking to deploy my windows app. in J# and I'm using the msdn library's "Deploying a Windows Application" walkthrough (http://msdn2.microsoft.com/en-US/library/k3bb4tfd(VS.80).aspx) to help me do so. Not sure if this is the right path to travel, but I'm just looking for the basics.

I'm looking for the equivalent J# code for the following command that launches Notepad.exe and gives it focus:

Shell("Notepad.exe", AppWinStyle.NormalFocus)

I've never deployed an application before, so any advice would be appreciated. I'm just looking for a basic installation that will get my app up and running.

Thanks for any assistance!



Answer this question

Deploying Windows Appication in J#

  • Proximus140753

    You can do it like the following line.



    System.Diagnostics.Process.Start("Notepad.exe", "parameter");


  • Deploying Windows Appication in J#