Example #1
0
        private void Main_Load(object sender, EventArgs e)
        {
            Log.setLogComponent(log_rtb);
            WnmpTrayIcon.Icon    = Properties.Resources.logo;
            WnmpTrayIcon.Visible = true;

            MainHelper.checkforapps();
            MainHelper.DoTimer();

            PopulateMenus();
            CheckFirstRun();

            if (Options.settings.Startallapplicationsatlaunch)
            {
                General.start_Click(null, null);
            }

            if (Options.settings.Autocheckforupdates)
            {
                Updater.DoDateEclasped();
            }

            Log.wnmp_log_notice("Wnmp ready to go!", Log.LogSection.WNMP_MAIN);
        }
Example #2
0
        private void Main_Load(object sender, EventArgs e)
        {
            Log.setLogComponent(log_rtb);
            WnmpTrayIcon.Icon    = Properties.Resources.logo;
            WnmpTrayIcon.Visible = true;

            HelperIns.checkforapps();
            HelperIns.DoTimer();

            PopulateMenus();
            HelperIns.FirstRun();

            if (Options.settings.RunAppsAtLaunch)
            {
                GeneralIns.StartAllProgs();
            }

            if (Options.settings.AutoCheckForUpdates)
            {
                UpdaterIns.DoDateEclasped();
            }

            Log.wnmp_log_notice("Wnmp ready to go!", Log.LogSection.WNMP_MAIN);
        }