Open Other software

Collapse
X
 
  • Time
  • Show
Clear All
new posts

  • sashi
    replied
    Mujeesh,

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

    Leave a comment:


  • mujeesh
    replied
    Thanks sashi...i was in little hurry at that time...
    thats why i posted this.

    Leave a comment:


  • tlhintoq
    replied
    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.

    Leave a comment:


  • sashi
    replied
    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

    Leave a comment:


  • mujeesh
    started a topic Open Other software

    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...
Working...