/// <summary>
 /// To check the Barcode status based on settings
 /// </summary>
 /// <returns></returns>
 public bool ShowBarcode()
 {
     bool isShow = false;
     try
     {
         SettingsBll BllSettings = new SettingsBll();
         isShow = BllSettings.ShowBarcode();
     }
     catch (Exception ex)
     {
         MessageBox.Show("PO4:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
     return isShow;
 }