Open Other software

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mujeesh
    New Member
    • Feb 2010
    • 3

    #1

    Open Other software

    Hello All,

    I want to open MAYA 3d Software from my GUI.
    Will u please help ?....
    I am not able to get the command...
  • sashi
    Recognized Expert Top Contributor
    • Jun 2006
    • 1749

    #2
    Running an EXE from c#

    Hi Mujeesh,

    I think you should run a simple search on the Bytes before even asking a question. Some of these has already been answered may times as well many years years ago.

    Running an EXE from c#

    Code:
    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();
            }
        }
    }
    Happy coding

    Comment

    • tlhintoq
      Recognized Expert Specialist
      • Mar 2008
      • 3532

      #3
      Question like this and "How do I fix an 'object not set to the instance of an object' error?" etc. really need to go into a proper F.A.Q. section on here.

      Comment

      • mujeesh
        New Member
        • Feb 2010
        • 3

        #4
        Thanks sashi...i was in little hurry at that time...
        thats why i posted this.

        Comment

        • sashi
          Recognized Expert Top Contributor
          • Jun 2006
          • 1749

          #5
          Mujeesh,

          Each and everyone of us are always in a rush. Do allocate some time for yourself :)

          Comment

          Working...