Ejemplo n.º 1
0
    public static void DeleteValue(String Name)
    {
        RegistryKey RK;

        RK = Registry.CurrentUser.OpenSubKey(AppMain.AppName, true);
        RK.DeleteValue(Name, false);
        RK.Close();
    }
Ejemplo n.º 2
0
    public static void SetValue(String Name, object Value)
    {
        RegistryKey RK;

        RK = Registry.CurrentUser.OpenSubKey(AppMain.AppName, true);
        RK.SetValue(Name, Value);
        RK.Close();
    }
Ejemplo n.º 3
0
    public static String [] GetNames()
    {
        RegistryKey RK;

        RK = Registry.CurrentUser.OpenSubKey(AppMain.AppName);
        String [] Names = RK.GetValueNames();
        RK.Close();

        return(Names);
    }
Ejemplo n.º 4
0
    public static object GetValue(String Name)
    {
        RegistryKey RK;

        RK = Registry.CurrentUser.OpenSubKey(AppMain.AppName, true);
        object Value = RK.GetValue(Name);

        RK.Close();

        return(Value);
    }
Ejemplo n.º 5
0
  { public static void CreateAccount()
    {
        RegistryKey RK;

        RK = Registry.CurrentUser.OpenSubKey(AppMain.AppName, true);

        if (RK == null)
        {
            RK = Registry.CurrentUser.CreateSubKey(AppMain.AppName);
        }

        RK.Close();
    }
Ejemplo n.º 6
0
    public static bool HasKey(String Name)
    {
        RegistryKey RK;

        RK = Registry.CurrentUser.OpenSubKey(AppMain.AppName, true);
        object Value = RK.GetValue(Name);

        RK.Close();

        if (Value == null)
        {
            return(false);
        }
        else
        {
            return(true);
        }
    }
Ejemplo n.º 7
0
        public static void Update()
        {
            RegistryKey RK;

            if ((RK = Registry.CurrentUser.OpenSubKey("Software\\PHPExecuter\\Settings")) == null)
            {
                Registry.CurrentUser.CreateSubKey("Software\\PHPExecuter\\Settings");
                RK = Registry.CurrentUser.OpenSubKey("Software\\PHPExecuter\\Settings");
            }

            //chbPrintRes
            if (RK.GetValue("chbPrintRes") != null)
            {
                try
                {
                    chbPrintRes = bool.Parse(RK.GetValue("chbPrintRes").ToString());
                }
                catch (Exception)
                {
                    chbPrintRes = true;
                }
            }
            else
            {
                chbPrintRes = true;
            }

            //chbSaveRes
            if (RK.GetValue("chbSaveRes") != null)
            {
                try
                {
                    chbSaveRes = bool.Parse(RK.GetValue("chbSaveRes").ToString());
                }
                catch (Exception)
                {
                    chbSaveRes = false;
                }
            }
            else
            {
                chbSaveRes = false;
            }


            //chbMinimizeToTray
            if (RK.GetValue("chbMinimizeToTray") != null)
            {
                try
                {
                    chbMinimizeToTray = bool.Parse(RK.GetValue("chbMinimizeToTray").ToString());
                }
                catch (Exception)
                {
                    chbMinimizeToTray = false;
                }
            }
            else
            {
                chbMinimizeToTray = false;
            }

            //chbCheckUpdatesAtStartUp
            if (RK.GetValue("chbCheckUpdatesAtStartUp") != null)
            {
                try
                {
                    chbCheckUpdatesAtStartUp = bool.Parse(RK.GetValue("chbCheckUpdatesAtStartUp").ToString());
                }
                catch (Exception)
                {
                    chbCheckUpdatesAtStartUp = true;
                }
            }
            else
            {
                chbCheckUpdatesAtStartUp = true;
            }

            //chbShowPopupDialog
            if (RK.GetValue("chbShowPopupDialog") != null)
            {
                try
                {
                    chbShowPopupDialog = bool.Parse(RK.GetValue("chbShowPopupDialog").ToString());
                }
                catch (Exception)
                {
                    chbShowPopupDialog = true;
                }
            }
            else
            {
                chbShowPopupDialog = true;
            }

            //tbSavePath
            if (RK.GetValue("tbSavePath") != null)
            {
                tbSavePath = RK.GetValue("tbSavePath").ToString();
            }

            //tbTSF
            if (RK.GetValue("tbTSF") != null)
            {
                tbTSF = RK.GetValue("tbTSF").ToString();
            }

            //chbSplit
            if (RK.GetValue("chbSplit") != null)
            {
                try
                {
                    chbSplit = bool.Parse(RK.GetValue("chbSplit").ToString());
                }
                catch (Exception)
                {
                    chbSplit = false;
                }
            }
            else
            {
                chbSplit = false;
            }

            //nudSplit
            if (RK.GetValue("nudSplit") != null)
            {
                try
                {
                    nudSplit = int.Parse(RK.GetValue("nudSplit").ToString());
                }
                catch (Exception)
                {
                    nudSplit = 100;
                }
            }
            else
            {
                nudSplit = 100;
            }

            //updateInterval
            if (RK.GetValue("updateInterval") != null)
            {
                try
                {
                    updateInterval = int.Parse(RK.GetValue("updateInterval").ToString());
                }
                catch (Exception)
                {
                    updateInterval = 0;
                }
            }
            else
            {
                updateInterval = 0;
            }

            //maxChar
            if (RK.GetValue("maxChar") != null)
            {
                try
                {
                    maxChar = int.Parse(RK.GetValue("maxChar").ToString());
                }
                catch (Exception)
                {
                    maxChar = 0;
                }
            }
            else
            {
                maxChar = 0;
            }

            //chbSavePHP
            if (RK.GetValue("chbSavePHP") != null)
            {
                try
                {
                    chbSavePHP = bool.Parse(RK.GetValue("chbSavePHP").ToString());
                }
                catch (Exception)
                {
                    chbSavePHP = true;
                }
            }
            else
            {
                chbSavePHP = true;
            }

            //chbSplit
            if (RK.GetValue("chbRunOnStartup") != null)
            {
                try
                {
                    chbRunOnStartup = bool.Parse(RK.GetValue("chbRunOnStartup").ToString());
                }
                catch (Exception)
                {
                    chbRunOnStartup = false;
                }
            }
            else
            {
                chbRunOnStartup = false;
            }

            //chbSplit
            if (RK.GetValue("chbSplit") != null)
            {
                try
                {
                    chbSplit = bool.Parse(RK.GetValue("chbSplit").ToString());
                }
                catch (Exception)
                {
                    chbSplit = false;
                }
            }
            else
            {
                chbSplit = false;
            }

            //chbTimeStamp
            if (RK.GetValue("chbTimeStamp") != null)
            {
                try
                {
                    chbTimeStamp = bool.Parse(RK.GetValue("chbTimeStamp").ToString());
                }
                catch (Exception)
                {
                    chbTimeStamp = false;
                }
            }
            else
            {
                chbTimeStamp = false;
            }

            //cbUnits
            if (RK.GetValue("cbUnits") != null)
            {
                try
                {
                    cbUnits = int.Parse(RK.GetValue("cbUnits").ToString());
                }
                catch (Exception)
                {
                    cbUnits = 2;
                }
            }
            else
            {
                cbUnits = 2;
            }

            //phpexe
            if (RK.GetValue("phpexe") != null)
            {
                phpexe = RK.GetValue("phpexe").ToString();
            }

            //enconding
            if (RK.GetValue("enconding") != null)
            {
                enconding = RK.GetValue("enconding").ToString();
            }

            //phpfile
            if (RK.GetValue("phpfile") != null)
            {
                phpfile = RK.GetValue("phpfile").ToString();
            }

            //phpargs
            if (RK.GetValue("phpargs") != null)
            {
                phpargs = RK.GetValue("phpargs").ToString();
            }

            //nudDay
            if (RK.GetValue("nudDay") != null)
            {
                try
                {
                    nudDay = int.Parse(RK.GetValue("nudDay").ToString());
                }
                catch (Exception)
                {
                    nudDay = 0;
                }
            }
            else
            {
                nudDay = 0;
            }

            //nudHour
            if (RK.GetValue("nudHour") != null)
            {
                try
                {
                    nudHour = int.Parse(RK.GetValue("nudHour").ToString());
                }
                catch (Exception)
                {
                    nudHour = 0;
                }
            }
            else
            {
                nudHour = 0;
            }

            //nudMinute
            if (RK.GetValue("nudMinute") != null)
            {
                try
                {
                    nudMinute = int.Parse(RK.GetValue("nudMinute").ToString());
                }
                catch (Exception)
                {
                    nudMinute = 0;
                }
            }
            else
            {
                nudMinute = 0;
            }

            //nudSecond
            if (RK.GetValue("nudSecond") != null)
            {
                try
                {
                    nudSecond = int.Parse(RK.GetValue("nudSecond").ToString());
                }
                catch (Exception)
                {
                    nudSecond = 0;
                }
            }
            else
            {
                nudSecond = 0;
            }

            //nudWarningLength
            if (RK.GetValue("nudWarningLength") != null)
            {
                try
                {
                    nudWarningLength = int.Parse(RK.GetValue("nudWarningLength").ToString());
                }
                catch (Exception)
                {
                    nudWarningLength = 3;
                }
            }
            else
            {
                nudWarningLength = 3;
            }

            //bMaximized
            if (RK.GetValue("bMaximized") != null)
            {
                try
                {
                    bMaximized = bool.Parse(RK.GetValue("bMaximized").ToString());
                }
                catch (Exception)
                {
                    bMaximized = false;
                }
            }
            else
            {
                bMaximized = false;
            }

            RK.Close();

            RegistryKey rkApp = Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true);

            if (rkApp != null)
            {
                if (rkApp.GetValue("PHPExecuter") == null)
                {
                    chbRunAtstartup = false;
                }
                else
                {
                    chbRunAtstartup = true;
                }

                rkApp.Close();
            }
            else
            {
                chbRunAtstartup = false;
            }
        }