public ContentBytesForm(byte[] byteArray)
 {
     InitializeComponent();
     Cursor         = Cursors.WaitCursor;
     tbContent.Text = AttachmentHelper.GetHexStringFromByteArray(byteArray);
     Cursor         = Cursors.Default;
 }