Esempio n. 1
0
        private static Icon GetPOLConfigIcon(ushort ResourceID)
        {
            string POLPath = POL.GetApplicationPath("1000");

            if (POLPath == null)
            {
                return(null);
            }
            return(Icons.GetIcon(Path.Combine(POLPath, Path.Combine("polcfg", "polcfg.exe")), ResourceID));
        }
Esempio n. 2
0
 public static bool IsAppInstalled(string ID, Region Region)
 {
     return(POL.GetApplicationPath(ID, Region) != null);
 }
Esempio n. 3
0
 public static string GetApplicationPath(string ID)
 {
     return(POL.GetApplicationPath(ID, POL.SelectedRegion_));
 }