ex handling
This commit is contained in:
		
							parent
							
								
									7e71c99a84
								
							
						
					
					
						commit
						609eccd75b
					
				@ -31,17 +31,24 @@ namespace OWTrack
 | 
			
		||||
 | 
			
		||||
        private void checkStatus()
 | 
			
		||||
        {
 | 
			
		||||
            Time.Text = DateTime.Now.ToString("h:mm tt");
 | 
			
		||||
           if (tr.owRunning())
 | 
			
		||||
           {                                
 | 
			
		||||
                status.Text = IS_RUNNING;
 | 
			
		||||
                status.ForeColor = Color.FromArgb(128, 255, 128);
 | 
			
		||||
           }
 | 
			
		||||
           else
 | 
			
		||||
           {
 | 
			
		||||
                status.Text = NOT_RUNNING;
 | 
			
		||||
                status.ForeColor = Color.Red;
 | 
			
		||||
           }
 | 
			
		||||
            try
 | 
			
		||||
            {
 | 
			
		||||
                Time.Text = DateTime.Now.ToString("h:mm tt");
 | 
			
		||||
                if (tr.owRunning())
 | 
			
		||||
                {
 | 
			
		||||
                    status.Text = IS_RUNNING;
 | 
			
		||||
                    status.ForeColor = Color.FromArgb(128, 255, 128);
 | 
			
		||||
                }
 | 
			
		||||
                else
 | 
			
		||||
                {
 | 
			
		||||
                    status.Text = NOT_RUNNING;
 | 
			
		||||
                    status.ForeColor = Color.Red;
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
            catch (Exception e)
 | 
			
		||||
            {
 | 
			
		||||
                MessageBox.Show(e.Message);                
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        private void button1_Click(object sender, EventArgs e)
 | 
			
		||||
 | 
			
		||||
@ -18,9 +18,17 @@ namespace OWTrack
 | 
			
		||||
       
 | 
			
		||||
        public bool owRunning()
 | 
			
		||||
        {
 | 
			
		||||
            bool isRunning = Process.GetProcessesByName("Overwatch")
 | 
			
		||||
                            .FirstOrDefault(p => p.MainModule.FileName.StartsWith(@"D:\Hesham\installed Games\Overwatch")) != default(Process);
 | 
			
		||||
            return isRunning;
 | 
			
		||||
            try
 | 
			
		||||
            {
 | 
			
		||||
                bool isRunning = Process.GetProcessesByName("Overwatch")
 | 
			
		||||
                                .FirstOrDefault(p => p.MainModule.FileName.StartsWith(@"D:\Hesham\installed Games\Overwatch")) != default(Process);
 | 
			
		||||
                return isRunning;
 | 
			
		||||
            }
 | 
			
		||||
            catch (Exception e)
 | 
			
		||||
            {
 | 
			
		||||
                Exception ex = new Exception("Error in tracking Overwatch.exe");
 | 
			
		||||
                throw ex;
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        public void addWin() { wins++; }
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user