public ResultForm(int IQcoef,string ime)
        {
            InitializeComponent();
            Ime = ime;
            IQCoef = IQcoef;
            minIQ = 55;
            xcoef = 20;
            ycoef = 200;
            this.BackColor = Color.DarkGray;

            iqscale = new IQScaleResult(IQCoef, xcoef, ycoef);
            this.DoubleBuffered = true;
            timer = new Timer();
            timer.Interval = 100;
            timer.Tick += new EventHandler(timer_Tick);
            timer.Start();
        }
        public ResultForm(int IQcoef, string ime)
        {
            InitializeComponent();
            Ime            = ime;
            IQCoef         = IQcoef;
            minIQ          = 55;
            xcoef          = 20;
            ycoef          = 200;
            this.BackColor = Color.DarkGray;

            iqscale             = new IQScaleResult(IQCoef, xcoef, ycoef);
            this.DoubleBuffered = true;
            timer          = new Timer();
            timer.Interval = 100;
            timer.Tick    += new EventHandler(timer_Tick);
            timer.Start();
        }