Пример #1
0
        public Form2(BulkStatsManager manager) : base()
        {
            InitializeComponent();

            this.BSM = manager;

            this.dateTimePicker1.ValueChanged += DateTimePicker1_ValueChanged;

            UpdateStatsAsync();
        }
Пример #2
0
        public Form1()
        {
            InitializeComponent();
            BSM = new BulkStatsManager();
            MS  = new MailingService();

            _form2 = null;
            //this.Icon = new Icon("Resources/EZ.ico");

            EditMode                          = false;
            BSM.MeetingBoost                  = MeetingBoost = false;
            TextBox_OPEN.TextChanged         += TextBox_OPEN_TextChanged;
            TextBox_REPLY.TextChanged        += TextBox_REPLY_TextChanged;
            TextBox_RESUME.TextChanged       += TextBox_RESUME_TextChanged;
            TextBox_MEETING.TextChanged      += TextBox_MEETING_TextChanged;
            TextBox_DELETED.TextChanged      += TextBox_DELETED_TextChanged;
            TextBox_NONQUALIFIED.TextChanged += TextBox_NONQUALIFIED_TextChanged;
            TextBox_IS.TextChanged           += TextBox_IS_TextChanged;
            ListView_ContactExecList.View     = View.Details;
        }