The last conversion status.
private void btnConvertRXD_Click(object sender, EventArgs e)
{
if (dlgopenRXD.ShowDialog() != DialogResult.OK)
return;
if (dlgSaveConvertedData.ShowDialog() != DialogResult.OK)
return;
RxLib.ConvertData(dlgopenRXD.FileName, dlgSaveConvertedData.FileName);
MessageBox.Show(RxLib.LastConvertStatus());
}