private void buttonSendView_Click(object sender, EventArgs e)
        {
            byte[] byteArray = convertImageToByteArray(CameraPreview.Image);

            int    tempval = (int)numericUpDownPortView.Value;
            string ip      = maskedTextBoxIpView.Text;

            if (TCPCon.PhotoSend(ip, tempval, byteArray) == 1)
            {
                tbConsole.AppendText("\r\n" + ActualData() + ": Poprawnie przesłano zdjecie na adres: " + ip);
            }
            else
            {
                tbConsole.AppendText("\r\n" + ActualData() + ": Brak sluchacza na tym porcie lub na tym adresie IP");
            }
        }