コード例 #1
0
        public void btnActivate_Click(object sender, EventArgs e)
        {
            LoadSetRegistryClass.RegActavate(this);
            DatePopupClass open = new DatePopupClass();

            open.Datechecker();
        }
コード例 #2
0
ファイル: Mainfrm.cs プロジェクト: mattu08/Green-Fingers
 private void Mainfrm_Load(object sender, EventArgs e)
 {
     LoadSetRegistryClass lsr = new LoadSetRegistryClass();
     LoadSetRegistryClass.RegGetSysTVel(this);
     lsr.chkRegRun();
     LoadSetRegistryClass.RegGetReminderVel(this);
     SQLToXMLDataOutputClass.xmlRefeshlst(this);
     this.greenFingersTableAdapter.Fill(this.greenFingersDBDataSet.GreenFingers);
     nfyIGf.Visible = true;
     ico = nfyIGf.Icon;
 }
コード例 #3
0
        private void Mainfrm_Load(object sender, EventArgs e)
        {
            LoadSetRegistryClass lsr = new LoadSetRegistryClass();

            LoadSetRegistryClass.RegGetSysTVel(this);
            lsr.chkRegRun();
            LoadSetRegistryClass.RegGetReminderVel(this);
            SQLToXMLDataOutputClass.xmlRefeshlst(this);
            this.greenFingersTableAdapter.Fill(this.greenFingersDBDataSet.GreenFingers);
            nfyIGf.Visible = true;
            ico            = nfyIGf.Icon;
        }
コード例 #4
0
ファイル: Mainfrm.cs プロジェクト: mattu08/Green-Fingers
        //--end--
        #endregion

        public Mainfrm()
        {
            try
            {
                LoadSetRegistryClass lsr = new LoadSetRegistryClass();
                lsr.chkRegAct();
                lsr.chkRegSysT();
                chkfiles();
                InitializeComponent();
                //Load rounded boreder----START-----
                Region = System.Drawing.Region.FromHrgn(ThemeGUIClass.CreateRoundRectRgn(0, 0, Width, Height, 20, 20));
                //-----END-----
            }
            catch (SystemException)
            {
                MessageBox.Show("Something is seriously wrong, must close!", "Green Fingers Error!", MessageBoxButtons.OK, MessageBoxIcon.Error);
                this.Close();
            }
        }
コード例 #5
0
        //--end--
        #endregion

        public Mainfrm()
        {
            try
            {
                LoadSetRegistryClass lsr = new LoadSetRegistryClass();
                lsr.chkRegAct();
                lsr.chkRegSysT();
                chkfiles();
                InitializeComponent();
                //Load rounded boreder----START-----
                Region = System.Drawing.Region.FromHrgn(ThemeGUIClass.CreateRoundRectRgn(0, 0, Width, Height, 20, 20));
                //-----END-----
            }
            catch (SystemException)
            {
                MessageBox.Show("Something is seriously wrong, must close!", "Green Fingers Error!", MessageBoxButtons.OK, MessageBoxIcon.Error);
                this.Close();
            }
        }
コード例 #6
0
 public void btnDeactivate_Click(object sender, EventArgs e)
 {
     LoadSetRegistryClass.RegDeactivate(this);
 }