Example #1
0
        public MailNotifier()
        {
            InitializeComponent();

            Messenger = new MessengerAPI.Messenger();
            AppRegKey = Registry.CurrentUser.CreateSubKey("Software\\MailNotifier");

            for (int i = 1; i < 99; i++)
                cmbComPort.Items.Add("COM" + i.ToString());

            cmbComPort.SelectedIndex = System.Convert.ToInt32(AppRegKey.GetValue("Port", "1")) - 1;
            serSerialPort.PortName = cmbComPort.Text;

            nicoNotifyIcon.Icon = this.Icon;
            nicoNotifyIcon.MouseClick += new MouseEventHandler(TrayIconClick);
        }
        public MailNotifier()
        {
            InitializeComponent();

            Messenger = new MessengerAPI.Messenger();
            AppRegKey = Registry.CurrentUser.CreateSubKey("Software\\MailNotifier");

            String[] PortNames = System.IO.Ports.SerialPort.GetPortNames();
            Array.Sort<String>(PortNames, delegate(string strA, string strB) { return int.Parse(strA.Substring(3)).CompareTo(int.Parse(strB.Substring(3))); });
            cmbComPort.Items.Clear();
            cmbComPort.Items.AddRange(PortNames);

            cmbComPort.SelectedIndex = System.Convert.ToInt32(AppRegKey.GetValue("Port", "1")) - 1;
            serSerialPort.PortName = cmbComPort.Text;

            nicoNotifyIcon.Icon = this.Icon;
            nicoNotifyIcon.MouseClick += new MouseEventHandler(TrayIconClick);
        }
Example #3
0
        public MailNotifier()
        {
            InitializeComponent();

            Messenger = new MessengerAPI.Messenger();
            AppRegKey = Registry.CurrentUser.CreateSubKey("Software\\MailNotifier");

            for (int i = 1; i < 99; i++)
            {
                cmbComPort.Items.Add("COM" + i.ToString());
            }

            cmbComPort.SelectedIndex = System.Convert.ToInt32(AppRegKey.GetValue("Port", "1")) - 1;
            serSerialPort.PortName   = cmbComPort.Text;

            nicoNotifyIcon.Icon        = this.Icon;
            nicoNotifyIcon.MouseClick += new MouseEventHandler(TrayIconClick);
        }
        public MailNotifier()
        {
            InitializeComponent();

            Messenger = new MessengerAPI.Messenger();
            AppRegKey = Registry.CurrentUser.CreateSubKey("Software\\MailNotifier");

            String[] PortNames = System.IO.Ports.SerialPort.GetPortNames();
            Array.Sort <String>(PortNames, delegate(string strA, string strB) { return(int.Parse(strA.Substring(3)).CompareTo(int.Parse(strB.Substring(3)))); });
            cmbComPort.Items.Clear();
            cmbComPort.Items.AddRange(PortNames);

            cmbComPort.SelectedIndex = System.Convert.ToInt32(AppRegKey.GetValue("Port", "1")) - 1;
            serSerialPort.PortName   = cmbComPort.Text;

            nicoNotifyIcon.Icon        = this.Icon;
            nicoNotifyIcon.MouseClick += new MouseEventHandler(TrayIconClick);
        }