本文整理匯總了C#中Open_Miracle.SettingsSP.SettingsGetId方法的典型用法代碼示例。如果您正苦於以下問題:C# SettingsSP.SettingsGetId方法的具體用法?C# SettingsSP.SettingsGetId怎麽用?C# SettingsSP.SettingsGetId使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Open_Miracle.SettingsSP
的用法示例。
在下文中一共展示了SettingsSP.SettingsGetId方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: SaveOrEdit
/// <summary>
/// Save or edit function,checking the invalid entries here
/// </summary>
public void SaveOrEdit()
{
SettingsSP spSettings = new SettingsSP();
SettingsInfo infoSettings = new SettingsInfo();
try
{
foreach (Control ctrl in this.Controls)
{
if (ctrl is CheckBox)
{
CheckBox cb = (CheckBox)ctrl;
strControlls = cb.Text.Replace(" ", string.Empty);
if (cb.Checked)
{
infoSettings.Status = strTrue;
infoSettings.SettingsId = spSettings.SettingsGetId(strControlls);
if (cb.Text == "Tax")
{
formMDI.MDIObj.taxToolStripMenuItem.Enabled = true;
}
if (cb.Text == "Budget")
{
formMDI.MDIObj.budgetToolStripMenuItem.Enabled = true;
}
if (cb.Text == "Payroll")
{
formMDI.MDIObj.payrollToolStripMenuItem.Enabled = true;
formMDI.MDIObj.payrollToolStripMenuItem1.Enabled = true;
foreach (ToolStripMenuItem toolItem in formMDI.MDIObj.payrollToolStripMenuItem1.DropDownItems)
{
toolItem.Enabled = true;
}
}
if (cb.Text == "Multi Currency")
{
formMDI.MDIObj.currencyToolStripMenuItem.Enabled = true;
}
if (cb.Text == "Allow Batch")
{
formMDI.MDIObj.batchToolStripMenuItem.Enabled = true;
}
if (cb.Text == "Allow Size")
{
formMDI.MDIObj.sizeToolStripMenuItem.Enabled = true;
}
if (cb.Text == "Allow Godown")
{
formMDI.MDIObj.godownToolStripMenuItem.Enabled = true;
if (cbxAllowRack.Checked)
{
formMDI.MDIObj.rackToolStripMenuItem.Enabled = true;
}
}
if (cb.Text == "Allow Rack")
{
formMDI.MDIObj.rackToolStripMenuItem.Enabled = true;
}
if (cb.Text == "Allow Model No")
{
formMDI.MDIObj.modelNumberToolStripMenuItem.Enabled = true;
}
}
else
{
infoSettings.Status = strFalse;
infoSettings.SettingsId = spSettings.SettingsGetId(strControlls);
if (cb.Text == "Tax")
{
formMDI.MDIObj.taxToolStripMenuItem.Enabled = false;
}
if (cb.Text == "Budget")
{
formMDI.MDIObj.budgetToolStripMenuItem.Enabled = false;
}
if (cb.Text == "Payroll")
{
formMDI.MDIObj.payrollToolStripMenuItem.Enabled = false;
formMDI.MDIObj.payrollToolStripMenuItem1.Enabled = false;
foreach (ToolStripMenuItem toolItem in formMDI.MDIObj.payrollToolStripMenuItem1.DropDownItems)
{
toolItem.Enabled = false;
}
}
if (cb.Text == "MultiCurrency")
{
formMDI.MDIObj.currencyToolStripMenuItem.Enabled = false;
}
if (cb.Text == "Allow Batch")
{
formMDI.MDIObj.batchToolStripMenuItem.Enabled = false;
}
if (cb.Text == "Allow Size")
{
formMDI.MDIObj.sizeToolStripMenuItem.Enabled = false;
}
if (cb.Text == "Allow Godown")
{
//.........這裏部分代碼省略.........