private void Form4_Load(object sender, EventArgs e)
        {
            Pomogi.SetTaskDescription(textBox1, 3, taskDescription);

            Bitmap   bmp = new Bitmap(pictureBox1.Width, pictureBox1.Height);
            Graphics grf = Graphics.FromImage(bmp);

            grf.Clear(Color.White);
            pictureBox1.Image = bmp;
            pictureBox1.Refresh();

            Bitmap   bmp2 = new Bitmap(pictureBox2.Width, pictureBox2.Height);
            Graphics grf2 = Graphics.FromImage(bmp2);

            grf2.Clear(Color.White);
            pictureBox2.Image = bmp2;
            pictureBox2.Refresh();
        }
 private void Form5_Load(object sender, EventArgs e)
 {
     Pomogi.SetTaskDescription(textBox1, 4, taskDescription);
 }
 private void Form3_Load(object sender, EventArgs e)
 {
     Pomogi.SetTaskDescription(textBox1, 2, taskDescription);
     PomogiTask2.UploadDefaultImage(pictureBox1);
 }