private void Save()
        {
            byte[] ImageArr = null;
            Image  image    = PictureHdr.Image;

            if (image != null)
            {
                ImageArr = CImage.ImageToArray(image);
            }
            bool Result = InstC.UpdateSettings(TxtRHdr1.Text, TxtRHdr2.Text, TxtRHdr3.Text, TxtLHdr1.Text, TxtLHdr2.Text,
                                               TxtLHdr3.Text, ImageArr, TxtFooter.Text);

            if (Result)
            {
                MessageBox.Show("تم حفظ الاعدادت بنجاح");
            }
            else
            {
                MessageBox.Show("لم يتم حفظ الاعدادات");
            }
        }