private void splashFormTimer_Tick(object sender, EventArgs e)
        {
            //1. intantiate
            selectionForm selectionForm = new selectionForm();

            this.splashFormTimer.Enabled = false;
            selectionForm.Show();
            this.Hide();
        }