/// <summary>
 /// Function to check ProductCode Status in settings
 /// </summary>
 /// <returns></returns>
 public bool ShowProductCode()
 {
     SettingsSP spSettings = new SettingsSP();
     bool isShow = false;
     try
     {
         isShow = spSettings.ShowProductCode();
     }
     catch (Exception ex)
     {
         MessageBox.Show("SQ:21" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
     return isShow;
 }