Ejemplo n.º 1
0
        protected override void InitializeSample()
        {
            base.InitializeSample();

            this.imap4ServerTextbox.Text  = Config.Imap4Server;
            this.usernameTextbox.Text     = Config.Imap4UserName;
            this.passwordTextbox.Text     = Config.Imap4Password;
            this.emailAddressTextbox.Text = Config.FromEmail;

            thisForm = this;

            worker         = new BackgroundWorker();
            worker.DoWork += new DoWorkEventHandler(StartIdleProcess);
        }
        protected override void InitializeSample()
        {
            base.InitializeSample();

            this.imap4ServerTextbox.Text = Config.Imap4Server;
            this.usernameTextbox.Text = Config.Imap4UserName;
            this.passwordTextbox.Text = Config.Imap4Password;
            this.emailAddressTextbox.Text = Config.FromEmail;

            thisForm = this;

            worker = new BackgroundWorker();
            worker.DoWork += new DoWorkEventHandler(StartIdleProcess);
        }
Ejemplo n.º 3
0
 private void newMessageNotificationButton_Click(object sender, EventArgs e)
 {
     IMAP4.NewMessageNotification form = new IMAP4.NewMessageNotification(this.Configuration);
     form.ShowDialog();
 }
Ejemplo n.º 4
0
 private void newMessageNotificationButton_Click(object sender, EventArgs e)
 {
     IMAP4.NewMessageNotification form = new IMAP4.NewMessageNotification(this.Configuration);
     form.ShowDialog();
 }