--- SignusKH/Form1.cs
+++ SignusKH/Form1.cs
... | ... | @@ -45,11 +45,14 @@ |
| 45 | 45 |
|
| 46 | 46 |
string strChrome1 = "C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe"; |
| 47 | 47 |
string strChrome2 = "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"; |
| 48 |
+ string strChrome3 = "C:\\Users\\CUPC\\AppData\\Local\\Google\\Chrome\\Application\\chrome.exe"; |
|
| 48 | 49 |
|
| 49 | 50 |
if (System.IO.File.Exists(strChrome1)) |
| 50 | 51 |
this.m_lstExe.Add(strChrome1); |
| 51 | 52 |
else if (System.IO.File.Exists(strChrome2)) |
| 52 | 53 |
this.m_lstExe.Add(strChrome2); |
| 54 |
+ else if (System.IO.File.Exists(strChrome3)) |
|
| 55 |
+ this.m_lstExe.Add(strChrome3); |
|
| 53 | 56 |
|
| 54 | 57 |
this.m_lstExe.Add(AppPath + string.Format("\\KHSCALE.exe"));
|
| 55 | 58 |
//this.m_lstExe.Add(AppPath + string.Format("\\YdtechInTemp.exe"));
|
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?