Exemple #1
0
 /// <summary>
 /// Function to use the CurrenySymbol Status
 /// </summary>
 /// <returns></returns>
 public bool ShowCurrencySymbol()
 {
     bool isShow = false;
     try
     {
         SettingsSP spSetting = new SettingsSP();
         isShow = spSetting.ShowCurrencySymbol();
     }
     catch (Exception ex)
     {
         MessageBox.Show("SO18:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
     return isShow;
 }