Hello All,
I want to open MAYA 3d Software from my GUI.
Will u please help ?....
I am not able to get the command...
I want to open MAYA 3d Software from my GUI.
Will u please help ?....
I am not able to get the command...
using System;
using System.Diagnostics;
namespace csharp_station.howto
{
/// <summary>
/// Demonstrates how to start another program from C#
/// </summary>
class ProcessStart
{
static void Main(string[] args)
{
Process myApp = new Process();
myApp.StartInfo.FileName = "your_app_name_goes_here.exe";
myApp.Start();
}
}
}
Comment