WFA_psychometric_chart.Form1_main.InitTimer C# (CSharp) Method

InitTimer() public method

public InitTimer ( ) : void
return void
        public void InitTimer()
        {
            timer1 = new System.Windows.Forms.Timer();
            timer1.Tick += new EventHandler(timer1_Tick);
            timer1.Interval = 1000 * 60; // in miliseconds //2min * 30 = 60 min minute ie every 1 hour
            timer1.Start();
        }
Form1_main