ANHMonitor.frmMonitor.zonedathomir C# (CSharp) Method

zonedathomir() public method

public zonedathomir ( ) : void
return void
        public void zonedathomir()
        {
            dathomirzone = new ProcessCaller(this);
            dathomirzone.FileName = "zoneserver.exe";
            dathomirzone.WorkingDirectory = "";
            dathomirzone.Arguments = "dathomir";
            dathomirzone.StdErrReceived += new DataReceivedHandler(writeDathomirStreamInfo);
            dathomirzone.StdOutReceived += new DataReceivedHandler(writeDathomirStreamInfo);
            dathomirzone.Completed += new EventHandler(dathomirCompleted);
            dathomirzone.Cancelled += new EventHandler(dathomirCanceled);
            dathomirzone.Start();
            //flgDathomirStarted = true;
        }