This commit is contained in:
chi
2022-05-10 11:18:06 +09:00
parent 2d737c8256
commit 8d83d4a768
70 changed files with 596 additions and 511 deletions

View File

@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호가 자동으로 // 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호가 자동으로
// 지정되도록 할 수 있습니다. // 지정되도록 할 수 있습니다.
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("22.05.01.2100")] [assembly: AssemblyVersion("22.05.10.1115")]
[assembly: AssemblyFileVersion("22.05.01.2100")] [assembly: AssemblyFileVersion("22.05.10.1115")]

View File

@@ -12,7 +12,7 @@ namespace Project.Properties {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.8.1.0")] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.10.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
@@ -33,26 +33,5 @@ namespace Project.Properties {
return ((string)(this["gwcs"])); return ((string)(this["gwcs"]));
} }
} }
[global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.SpecialSettingAttribute(global::System.Configuration.SpecialSetting.ConnectionString)]
[global::System.Configuration.DefaultSettingValueAttribute("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\\Temp\\PMP\\SPMaster.mdb")]
public string PMPCS {
get {
return ((string)(this["PMPCS"]));
}
}
[global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.SpecialSettingAttribute(global::System.Configuration.SpecialSetting.ConnectionString)]
[global::System.Configuration.DefaultSettingValueAttribute("Data Source=10.141.18.50;Initial Catalog=S1ACCESS300;Persist Security Info=True;U" +
"ser ID=amkoruser;Password=AmkorUser!")]
public string csAccess {
get {
return ((string)(this["csAccess"]));
}
}
} }
} }

View File

@@ -10,21 +10,5 @@
&lt;/SerializableConnectionString&gt;</DesignTimeValue> &lt;/SerializableConnectionString&gt;</DesignTimeValue>
<Value Profile="(Default)">Data Source=10.131.15.18;Initial Catalog=EE;Persist Security Info=True;User ID=eeuser;Password=Amkor123!</Value> <Value Profile="(Default)">Data Source=10.131.15.18;Initial Catalog=EE;Persist Security Info=True;User ID=eeuser;Password=Amkor123!</Value>
</Setting> </Setting>
<Setting Name="PMPCS" Type="(Connection string)" Scope="Application">
<DesignTimeValue Profile="(Default)">&lt;?xml version="1.0" encoding="utf-16"?&gt;
&lt;SerializableConnectionString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
&lt;ConnectionString&gt;Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\Temp\PMP\SPMaster.mdb&lt;/ConnectionString&gt;
&lt;ProviderName&gt;System.Data.OleDb&lt;/ProviderName&gt;
&lt;/SerializableConnectionString&gt;</DesignTimeValue>
<Value Profile="(Default)">Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\Temp\PMP\SPMaster.mdb</Value>
</Setting>
<Setting Name="csAccess" Type="(Connection string)" Scope="Application">
<DesignTimeValue Profile="(Default)">&lt;?xml version="1.0" encoding="utf-16"?&gt;
&lt;SerializableConnectionString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
&lt;ConnectionString&gt;Data Source=10.141.18.50;Initial Catalog=S1ACCESS300;Persist Security Info=True;User ID=amkoruser;Password=AmkorUser!&lt;/ConnectionString&gt;
&lt;ProviderName&gt;System.Data.SqlClient&lt;/ProviderName&gt;
&lt;/SerializableConnectionString&gt;</DesignTimeValue>
<Value Profile="(Default)">Data Source=10.141.18.50;Initial Catalog=S1ACCESS300;Persist Security Info=True;User ID=amkoruser;Password=AmkorUser!</Value>
</Setting>
</Settings> </Settings>
</SettingsFile> </SettingsFile>

View File

@@ -506,11 +506,22 @@ namespace Project
public static void RunExplorer(string arg) public static void RunExplorer(string arg)
{ {
if(arg.StartsWith("http"))
{
System.Diagnostics.Process.Start(arg);
}
else
{
System.Diagnostics.ProcessStartInfo si = new ProcessStartInfo("explorer"); System.Diagnostics.ProcessStartInfo si = new ProcessStartInfo("explorer");
si.Arguments = arg; si.Arguments = arg;
System.Diagnostics.Process.Start(si); System.Diagnostics.Process.Start(si);
} }
}
#region "watchdog" #region "watchdog"
public static void WatchDog_Run() public static void WatchDog_Run()
{ {

View File

@@ -2,17 +2,24 @@
<configuration> <configuration>
<configSections></configSections> <configSections></configSections>
<connectionStrings> <connectionStrings>
<add name="Project.Properties.Settings.gwcs" connectionString="Data Source=10.131.15.18;Initial Catalog=EE;Persist Security Info=True;User ID=eeuser;Password=Amkor123!" providerName="System.Data.SqlClient" /> <add name="Project.Properties.Settings.gwcs" connectionString="Data Source=10.131.15.18;Initial Catalog=EE;Persist Security Info=True;User ID=eeuser;Password=Amkor123!"
<add name="Project.Properties.Settings.PMPCS" connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\Temp\PMP\SPMaster.mdb" providerName="System.Data.OleDb" /> providerName="System.Data.SqlClient" />
<add name="Project.Properties.Settings.csAccess" connectionString="Data Source=10.141.18.50;Initial Catalog=S1ACCESS300;Persist Security Info=True;User ID=amkoruser;Password=AmkorUser!" providerName="System.Data.SqlClient" /> <add name="EEEntities" connectionString="metadata=res://*/Model1.csdl|res://*/Model1.ssdl|res://*/Model1.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=10.131.15.18;initial catalog=EE;persist security info=True;user id=eeuser;password=Amkor123!;MultipleActiveResultSets=True;App=EntityFramework&quot;"
<add name="EEEntities" connectionString="metadata=res://*/Model1.csdl|res://*/Model1.ssdl|res://*/Model1.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=10.131.15.18;initial catalog=EE;persist security info=True;user id=eeuser;password=Amkor123!;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" /> providerName="System.Data.EntityClient" />
<add name="EEEntities1" connectionString="metadata=res://*/ModelMain.csdl|res://*/ModelMain.ssdl|res://*/ModelMain.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=10.131.15.18;initial catalog=EE;user id=eeuser;password=Amkor123!;connect timeout=30;encrypt=False;trustservercertificate=False;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" /> <add name="EEEntities1" connectionString="metadata=res://*/ModelMain.csdl|res://*/ModelMain.ssdl|res://*/ModelMain.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=10.131.15.18;initial catalog=EE;user id=eeuser;password=Amkor123!;connect timeout=30;encrypt=False;trustservercertificate=False;MultipleActiveResultSets=True;App=EntityFramework&quot;"
<add name="EEEntitiesMain" connectionString="metadata=res://*/AdoNetEFMain.csdl|res://*/AdoNetEFMain.ssdl|res://*/AdoNetEFMain.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=10.131.15.18;initial catalog=EE;user id=eeuser;password=Amkor123!;connect timeout=30;encrypt=False;trustservercertificate=False;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" /> providerName="System.Data.EntityClient" />
<add name="S1ACCESS300Entities" connectionString="metadata=res://*/Model1.csdl|res://*/Model1.ssdl|res://*/Model1.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=10.141.18.50;initial catalog=S1ACCESS300;persist security info=True;user id=amkoruser;password=AmkorUser!;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" /> <add name="EEEntitiesMain" connectionString="metadata=res://*/AdoNetEFMain.csdl|res://*/AdoNetEFMain.ssdl|res://*/AdoNetEFMain.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=10.131.15.18;initial catalog=EE;user id=eeuser;password=Amkor123!;connect timeout=30;encrypt=False;trustservercertificate=False;MultipleActiveResultSets=True;App=EntityFramework&quot;"
<add name="EEEntitiesPurchase" connectionString="metadata=res://*/ModelPurchase.csdl|res://*/ModelPurchase.ssdl|res://*/ModelPurchase.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=10.131.15.18;initial catalog=EE;persist security info=True;user id=eeuser;password=Amkor123!;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" /> providerName="System.Data.EntityClient" />
<add name="EEEntitiesCommon" connectionString="metadata=res://*/ModelCommon.csdl|res://*/ModelCommon.ssdl|res://*/ModelCommon.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=10.131.15.18;initial catalog=EE;persist security info=True;user id=eeuser;password=Amkor123!;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" /> <add name="S1ACCESS300Entities" connectionString="metadata=res://*/Model1.csdl|res://*/Model1.ssdl|res://*/Model1.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=10.141.18.50;initial catalog=S1ACCESS300;persist security info=True;user id=amkoruser;password=AmkorUser!;MultipleActiveResultSets=True;App=EntityFramework&quot;"
<add name="EEEntitiesJobreport" connectionString="metadata=res://*/ModelJobreport.csdl|res://*/ModelJobreport.ssdl|res://*/ModelJobreport.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=10.131.15.18;initial catalog=EE;persist security info=True;user id=eeuser;password=Amkor123!;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" /> providerName="System.Data.EntityClient" />
<add name="EEEntitiesProject" connectionString="metadata=res://*/ModelProject.csdl|res://*/ModelProject.ssdl|res://*/ModelProject.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=10.131.15.18;initial catalog=EE;persist security info=True;user id=eeuser;password=Amkor123!;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" /> <add name="EEEntitiesPurchase" connectionString="metadata=res://*/ModelPurchase.csdl|res://*/ModelPurchase.ssdl|res://*/ModelPurchase.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=10.131.15.18;initial catalog=EE;persist security info=True;user id=eeuser;password=Amkor123!;MultipleActiveResultSets=True;App=EntityFramework&quot;"
providerName="System.Data.EntityClient" />
<add name="EEEntitiesCommon" connectionString="metadata=res://*/ModelCommon.csdl|res://*/ModelCommon.ssdl|res://*/ModelCommon.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=10.131.15.18;initial catalog=EE;persist security info=True;user id=eeuser;password=Amkor123!;MultipleActiveResultSets=True;App=EntityFramework&quot;"
providerName="System.Data.EntityClient" />
<add name="EEEntitiesJobreport" connectionString="metadata=res://*/ModelJobreport.csdl|res://*/ModelJobreport.ssdl|res://*/ModelJobreport.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=10.131.15.18;initial catalog=EE;persist security info=True;user id=eeuser;password=Amkor123!;MultipleActiveResultSets=True;App=EntityFramework&quot;"
providerName="System.Data.EntityClient" />
<add name="EEEntitiesProject" connectionString="metadata=res://*/ModelProject.csdl|res://*/ModelProject.ssdl|res://*/ModelProject.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=10.131.15.18;initial catalog=EE;persist security info=True;user id=eeuser;password=Amkor123!;MultipleActiveResultSets=True;App=EntityFramework&quot;"
providerName="System.Data.EntityClient" />
</connectionStrings> </connectionStrings>
<runtime> <runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">

View File

@@ -17,6 +17,7 @@ namespace FBS0000
public WorkTable() public WorkTable()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
var sd = DateTime.Now.ToString("yyyy-MM-01"); var sd = DateTime.Now.ToString("yyyy-MM-01");
var ed = DateTime.Parse(sd).AddMonths(1).AddDays(-1).ToShortDateString();// DateTime.Now.AddMonths(1).ToString("yyyy-MM-01")).AddDays(-1).ToShortDateString(); var ed = DateTime.Parse(sd).AddMonths(1).AddDays(-1).ToShortDateString();// DateTime.Now.AddMonths(1).ToString("yyyy-MM-01")).AddDays(-1).ToShortDateString();

View File

@@ -15,6 +15,7 @@ namespace FBS0000.Holiday
public fErrorChk() public fErrorChk()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
//dtSD.KeyDown += dtSD_KeyDown; //dtSD.KeyDown += dtSD_KeyDown;
//dtED.KeyDown += dtSD_KeyDown; //dtED.KeyDown += dtSD_KeyDown;

View File

@@ -15,6 +15,7 @@ namespace FBS0000
public fHolyDayData(string sdate, string uid) public fHolyDayData(string sdate, string uid)
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.WindowState = FormWindowState.Maximized; this.WindowState = FormWindowState.Maximized;
var dtUser = FCOMMON.DBM.getUserTable(); var dtUser = FCOMMON.DBM.getUserTable();

View File

@@ -18,6 +18,7 @@ namespace FBS0000
public fHolyday() public fHolyday()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
fn_fpcolsize = System.IO.Path.Combine(FCOMMON.Util.CurrentPath, "formSetting", "fp_" + this.Name + "i.ini"); fn_fpcolsize = System.IO.Path.Combine(FCOMMON.Util.CurrentPath, "formSetting", "fp_" + this.Name + "i.ini");
this.dsMSSQL.vHoliday_uselist.TableNewRow += Holyday_TableNewRow; this.dsMSSQL.vHoliday_uselist.TableNewRow += Holyday_TableNewRow;
//this.dv1.CellFormatting += dv1_CellFormatting; //this.dv1.CellFormatting += dv1_CellFormatting;

View File

@@ -18,6 +18,7 @@ namespace FBS0000
public fHolydayJobReport(string sd,string ed ,string uid ) public fHolydayJobReport(string sd,string ed ,string uid )
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.tbSD.Text = sd; this.tbSD.Text = sd;
this.tbED.Text = ed; this.tbED.Text = ed;
p_uid = uid; p_uid = uid;

View File

@@ -17,6 +17,7 @@ namespace FBS0000
public fHolyday_Add(dsMSSQL.HolydayRow dr_) public fHolyday_Add(dsMSSQL.HolydayRow dr_)
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.dr = dr_; this.dr = dr_;
//if (idx == -1) //if (idx == -1)
//{ //{

View File

@@ -15,6 +15,7 @@ namespace FBS0000.Holiday
public fImpKunTae() public fImpKunTae()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
} }
private void fImpKunTae_Load(object sender, EventArgs e) private void fImpKunTae_Load(object sender, EventArgs e)

View File

@@ -17,6 +17,7 @@ namespace FBS0000
public fWorkTableUser() public fWorkTableUser()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.dsMSSQL.EETGW_WorkTableUser.TableNewRow += Holyday_TableNewRow; this.dsMSSQL.EETGW_WorkTableUser.TableNewRow += Holyday_TableNewRow;
//this.dv1.CellFormatting += dv1_CellFormatting; //this.dv1.CellFormatting += dv1_CellFormatting;
} }

View File

@@ -14,6 +14,7 @@ namespace FBS0000
public rHolidaySummary() public rHolidaySummary()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.WindowState = FormWindowState.Maximized; this.WindowState = FormWindowState.Maximized;
} }

View File

@@ -15,6 +15,7 @@ namespace FBS0000
public fLovWorkUser(List<dsMSSQL.EETGW_WorkTableUserRow> users) public fLovWorkUser(List<dsMSSQL.EETGW_WorkTableUserRow> users)
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.dsMSSQL.Merge(users.ToArray()); this.dsMSSQL.Merge(users.ToArray());
this.KeyDown += (s1, e1) => { if (e1.KeyCode == Keys.Escape) this.Close(); }; this.KeyDown += (s1, e1) => { if (e1.KeyCode == Keys.Escape) this.Close(); };
} }

View File

@@ -15,6 +15,7 @@ namespace FBS0000
public fMinutes() public fMinutes()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.dsMSSQL.minutes.TableNewRow += minutes_TableNewRow; this.dsMSSQL.minutes.TableNewRow += minutes_TableNewRow;
} }

View File

@@ -15,6 +15,7 @@ namespace FBS0000
public fMinutesDetail(int idx_) public fMinutesDetail(int idx_)
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.FormClosed += __Closed; this.FormClosed += __Closed;
this.idx = idx_; this.idx = idx_;
} }

View File

@@ -17,6 +17,7 @@ namespace FCM0000
public fPatchList() public fPatchList()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.dsMSSQL.Board.TableNewRow += RequestItem_TableNewRow; this.dsMSSQL.Board.TableNewRow += RequestItem_TableNewRow;
} }

View File

@@ -17,6 +17,7 @@ namespace FCM0000
public fRequestItem() public fRequestItem()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.dsMSSQL.RequestItem.TableNewRow += RequestItem_TableNewRow; this.dsMSSQL.RequestItem.TableNewRow += RequestItem_TableNewRow;
} }

View File

@@ -16,6 +16,7 @@ namespace FCM0000
public fRequestItem_Add(dsMSSQL.RequestItemRow dr_) public fRequestItem_Add(dsMSSQL.RequestItemRow dr_)
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
dr = dr_; dr = dr_;
PredefinedButtonSets.SetupDefaultButtons(this.tbRemark); PredefinedButtonSets.SetupDefaultButtons(this.tbRemark);
} }

View File

@@ -16,6 +16,7 @@ namespace FCM0000
public Customer_Import() public Customer_Import()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.FormClosed += __Closed; this.FormClosed += __Closed;
} }

View File

@@ -14,6 +14,7 @@ namespace FCM0000.Inventory
public RepInvStock() public RepInvStock()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
} }
private void RepInvStock_Load(object sender, EventArgs e) private void RepInvStock_Load(object sender, EventArgs e)

View File

@@ -15,6 +15,7 @@ namespace FCM0000.Inventory
public RepInvStockUser(string uid) public RepInvStockUser(string uid)
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.userid = uid; this.userid = uid;
} }

View File

@@ -15,6 +15,7 @@ namespace FCM0000
public fInventory() public fInventory()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.FormClosed += __Closed; this.FormClosed += __Closed;
this.dSInventory.vInventory.TableNewRow += Inventory_TableNewRow; this.dSInventory.vInventory.TableNewRow += Inventory_TableNewRow;
this.dtSD.KeyDown += dtSD_KeyDown; this.dtSD.KeyDown += dtSD_KeyDown;

View File

@@ -15,6 +15,7 @@ namespace FCM0000
public fInventoryJagoList() public fInventoryJagoList()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.FormClosed += __Closed; this.FormClosed += __Closed;
this.dtSD.KeyDown += dtSD_KeyDown; this.dtSD.KeyDown += dtSD_KeyDown;
fn_fpcolsize = System.IO.Path.Combine(FCOMMON.Util.CurrentPath, "formSetting", "fp_" + this.Name + ".ini"); fn_fpcolsize = System.IO.Path.Combine(FCOMMON.Util.CurrentPath, "formSetting", "fp_" + this.Name + ".ini");

View File

@@ -15,6 +15,7 @@ namespace FCM0000.Inventory
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.tbPumIDX.Text = itemIndex.ToString(); this.tbPumIDX.Text = itemIndex.ToString();
this.tbPumName.Text = itemname; this.tbPumName.Text = itemname;
this.tbPumName.Tag = itemname; this.tbPumName.Tag = itemname;

View File

@@ -14,6 +14,7 @@ namespace FCM0000
public fInventoryUser() public fInventoryUser()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.FormClosed += __Closed; this.FormClosed += __Closed;
this.dsMSSQL.InventoryUser.TableNewRow += Inventory_TableNewRow; this.dsMSSQL.InventoryUser.TableNewRow += Inventory_TableNewRow;

View File

@@ -19,6 +19,7 @@ namespace FCM0000
public finventoryAdd(DSInventory.vInventoryRow dr_) public finventoryAdd(DSInventory.vInventoryRow dr_)
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
bsManu = new BindingSource(); bsManu = new BindingSource();
bsModel = new BindingSource(); bsModel = new BindingSource();
this.dr = dr_; this.dr = dr_;

View File

@@ -15,6 +15,7 @@ namespace FCM0000.Item
public fItemAdd() public fItemAdd()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
foreach (Control ctl in this.Controls) foreach (Control ctl in this.Controls)
{ {

View File

@@ -16,6 +16,8 @@ namespace FCM0000
public fItems() public fItems()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
fn_fpcolsize = System.IO.Path.Combine(FCOMMON.Util.CurrentPath, "formSetting", "fp_" + this.Name + ".ini"); fn_fpcolsize = System.IO.Path.Combine(FCOMMON.Util.CurrentPath, "formSetting", "fp_" + this.Name + ".ini");
this.FormClosed += fItems_FormClosed; this.FormClosed += fItems_FormClosed;
this.dsMSSQL.Items.TableNewRow += Items_TableNewRow; this.dsMSSQL.Items.TableNewRow += Items_TableNewRow;

View File

@@ -28,6 +28,7 @@ namespace FCM0000
public fLovItem(string search_) public fLovItem(string search_)
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
fn_fpcolsize = System.IO.Path.Combine(FCOMMON.Util.CurrentPath, "formSetting", "fp_" + this.Name + ".ini"); fn_fpcolsize = System.IO.Path.Combine(FCOMMON.Util.CurrentPath, "formSetting", "fp_" + this.Name + ".ini");

View File

@@ -17,6 +17,8 @@ namespace FCM0000
public fLovOneItem(List<string> lists) public fLovOneItem(List<string> lists)
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.StartPosition = FormStartPosition.CenterScreen; this.StartPosition = FormStartPosition.CenterScreen;
Title = string.Empty; Title = string.Empty;
dt = new DataTable(); dt = new DataTable();

View File

@@ -15,6 +15,8 @@ namespace FCM0000.Mail
public fAutoSendSetting() public fAutoSendSetting()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.FormClosed += fAutoSendSetting_FormClosed; this.FormClosed += fAutoSendSetting_FormClosed;
fn_fpcolsize = System.IO.Path.Combine(FCOMMON.Util.CurrentPath, "formSetting", "fp_" + this.Name + ".ini"); fn_fpcolsize = System.IO.Path.Combine(FCOMMON.Util.CurrentPath, "formSetting", "fp_" + this.Name + ".ini");
} }

View File

@@ -15,6 +15,8 @@ namespace FCM0000
public fJRForm() public fJRForm()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.dsMSSQL1.EETGW_DocuForm.TableNewRow += MailForm_TableNewRow; this.dsMSSQL1.EETGW_DocuForm.TableNewRow += MailForm_TableNewRow;
} }

View File

@@ -16,6 +16,8 @@ namespace FCM0000
public fMailAutoAdd(DSMail.MailAutoRow dr_) public fMailAutoAdd(DSMail.MailAutoRow dr_)
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
PredefinedButtonSets.SetupDefaultButtons(this.tbBody); PredefinedButtonSets.SetupDefaultButtons(this.tbBody);
this.dr = dr_; this.dr = dr_;
} }

View File

@@ -18,6 +18,8 @@ namespace FCM0000.Mail
public fMailBackup() public fMailBackup()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
dateTimePicker1.Value = DateTime.Now.AddYears(-2); dateTimePicker1.Value = DateTime.Now.AddYears(-2);
dateTimePicker2.Value = DateTime.Now.AddYears(-1); dateTimePicker2.Value = DateTime.Now.AddYears(-1);
} }

View File

@@ -15,6 +15,7 @@ namespace FCM0000.Mail
public fMailList() public fMailList()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.FormClosed += fAutoSendSetting_FormClosed; this.FormClosed += fAutoSendSetting_FormClosed;
fn_fpcolsize = System.IO.Path.Combine(FCOMMON.Util.CurrentPath, "formSetting", "fp_" + this.Name + ".ini"); fn_fpcolsize = System.IO.Path.Combine(FCOMMON.Util.CurrentPath, "formSetting", "fp_" + this.Name + ".ini");
} }

View File

@@ -15,6 +15,7 @@ namespace FCM0000
public fMailform() public fMailform()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
PredefinedButtonSets.SetupDefaultButtons(this.htmlEditor1); PredefinedButtonSets.SetupDefaultButtons(this.htmlEditor1);
this.dsMSSQL.MailForm.TableNewRow += MailForm_TableNewRow; this.dsMSSQL.MailForm.TableNewRow += MailForm_TableNewRow;
} }

View File

@@ -15,11 +15,10 @@ namespace FCM0000
{ {
public partial class fSendMail : FCOMMON.fBase public partial class fSendMail : FCOMMON.fBase
{ {
public fSendMail() public fSendMail()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
PredefinedButtonSets.SetupDefaultButtons(this.tbBody); PredefinedButtonSets.SetupDefaultButtons(this.tbBody);
this.dsMSSQL.MailData.TableNewRow += MailForm_TableNewRow; this.dsMSSQL.MailData.TableNewRow += MailForm_TableNewRow;
} }

View File

@@ -23,6 +23,7 @@ namespace FCM0000
public fLovUser(string search_) public fLovUser(string search_)
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
fn_fpcolsize = System.IO.Path.Combine(FCOMMON.Util.CurrentPath, "formSetting", "fp_" + this.Name + ".ini"); fn_fpcolsize = System.IO.Path.Combine(FCOMMON.Util.CurrentPath, "formSetting", "fp_" + this.Name + ".ini");
this.keyword = search_; this.keyword = search_;
this.fpSpread1.KeyDown += fpSpread1_KeyDown; this.fpSpread1.KeyDown += fpSpread1_KeyDown;

View File

@@ -15,6 +15,7 @@ namespace FCM0000
public fUserAuth() public fUserAuth()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
fn_fpcolsize1 = FCOMMON.Util.MakeFilePath(FCOMMON.Util.CurrentPath, "formSetting", "fp1_" + this.Name + ".ini"); fn_fpcolsize1 = FCOMMON.Util.MakeFilePath(FCOMMON.Util.CurrentPath, "formSetting", "fp1_" + this.Name + ".ini");
} }

View File

@@ -15,6 +15,7 @@ namespace FCM0000
public fUserGroup() public fUserGroup()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
fn_fpcolsize1 = FCOMMON.Util.MakeFilePath(FCOMMON.Util.CurrentPath, "formSetting", "fp1_" + this.Name + ".ini"); fn_fpcolsize1 = FCOMMON.Util.MakeFilePath(FCOMMON.Util.CurrentPath, "formSetting", "fp1_" + this.Name + ".ini");
} }

View File

@@ -15,6 +15,7 @@ namespace FCM0000
public fUserGroupPermission(int permission_) public fUserGroupPermission(int permission_)
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.permission = permission_; this.permission = permission_;
} }

View File

@@ -14,6 +14,7 @@ namespace FCM0000
public fCode() public fCode()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.dsMSSQL.Common.TableNewRow += Common_TableNewRow; this.dsMSSQL.Common.TableNewRow += Common_TableNewRow;
if (FCOMMON.info.Login.level >= 9) toolStripButton1.Visible = true; if (FCOMMON.info.Login.level >= 9) toolStripButton1.Visible = true;
} }

View File

@@ -16,7 +16,7 @@ namespace FCM0000
public fCustoms() public fCustoms()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
fn_fpcolsize1 = FCOMMON.Util.MakeFilePath(FCOMMON.Util.CurrentPath, "formSetting", "fp1_" + this.Name + ".ini"); fn_fpcolsize1 = FCOMMON.Util.MakeFilePath(FCOMMON.Util.CurrentPath, "formSetting", "fp1_" + this.Name + ".ini");
fn_fpcolsize2 = FCOMMON.Util.MakeFilePath(FCOMMON.Util.CurrentPath, "formSetting", "fp2_" + this.Name + ".ini"); fn_fpcolsize2 = FCOMMON.Util.MakeFilePath(FCOMMON.Util.CurrentPath, "formSetting", "fp2_" + this.Name + ".ini");
} }

View File

@@ -17,6 +17,7 @@ namespace FCM0000
public fHolidaytable() public fHolidaytable()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.StartPosition = FormStartPosition.CenterScreen; this.StartPosition = FormStartPosition.CenterScreen;
this.KeyPreview = true; this.KeyPreview = true;
this.KeyDown += (s1, e1) => { if (e1.KeyCode == Keys.Escape) this.Close(); }; this.KeyDown += (s1, e1) => { if (e1.KeyCode == Keys.Escape) this.Close(); };

View File

@@ -19,6 +19,8 @@ namespace FCM0000
public fLovProject(string search_, string stat_ = "") public fLovProject(string search_, string stat_ = "")
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
Title = string.Empty; Title = string.Empty;
Index = -1; Index = -1;

View File

@@ -18,6 +18,8 @@ namespace FCM0000
public fLovSupply(string search_) public fLovSupply(string search_)
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
Title = string.Empty; Title = string.Empty;
Index = -1; Index = -1;

View File

@@ -16,6 +16,7 @@ namespace FCM0000
public fMaterial_Import() public fMaterial_Import()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.FormClosed += __Closed; this.FormClosed += __Closed;
} }

View File

@@ -28,6 +28,7 @@ namespace FCM0000
public fSelectDate(DateTime dt) public fSelectDate(DateTime dt)
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
this.monthCalendar1.SetDate(dt); this.monthCalendar1.SetDate(dt);
} }

View File

@@ -18,6 +18,11 @@ namespace FED0000
public fEdulist() public fEdulist()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
Properties.Settings.Default["EEEntities"] = FCOMMON.info.CS;
fn_fpcolsize = util.MakeFilePath(util.CurrentPath, "formSetting", "fp_" + this.Name + ".ini"); fn_fpcolsize = util.MakeFilePath(util.CurrentPath, "formSetting", "fp_" + this.Name + ".ini");
this.dsPurchase.EETGW_EducationList.TableNewRow += Purchase_TableNewRow; this.dsPurchase.EETGW_EducationList.TableNewRow += Purchase_TableNewRow;
this.FormClosing += FPurchase_FormClosing; this.FormClosing += FPurchase_FormClosing;

View File

@@ -18,6 +18,9 @@ namespace FED0000
public fLicenseList() public fLicenseList()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
Properties.Settings.Default["EEEntities"] = FCOMMON.info.CS;
fn_fpcolsize = util.MakeFilePath(util.CurrentPath, "formSetting", "fp_" + this.Name + ".ini"); fn_fpcolsize = util.MakeFilePath(util.CurrentPath, "formSetting", "fp_" + this.Name + ".ini");
this.dsPurchase.EETGW_License.TableNewRow += Purchase_TableNewRow; this.dsPurchase.EETGW_License.TableNewRow += Purchase_TableNewRow;
this.FormClosing += FPurchase_FormClosing; this.FormClosing += FPurchase_FormClosing;

View File

@@ -17,6 +17,8 @@ namespace FEQ0000
public EQFilterApply(string type_) public EQFilterApply(string type_)
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
Properties.Settings.Default["EEEntities"] = FCOMMON.info.CS;
this.eqfiletertype = type_; this.eqfiletertype = type_;
this.FormClosed += __Closed; this.FormClosed += __Closed;
} }

View File

@@ -15,6 +15,8 @@ namespace FEQ0000
public EQfilterManager(string type_) public EQfilterManager(string type_)
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
Properties.Settings.Default["EEEntities"] = FCOMMON.info.CS;
divtype = type_; divtype = type_;
this.dsEQ.EquipmentFilter.TableNewRow += EquipmentFilter_TableNewRow; this.dsEQ.EquipmentFilter.TableNewRow += EquipmentFilter_TableNewRow;
} }

View File

@@ -29,6 +29,9 @@ namespace FEQ0000
public fEquipment(eTabletype type_) public fEquipment(eTabletype type_)
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
Properties.Settings.Default["EEEntities"] = FCOMMON.info.CS;
dataType = type_; dataType = type_;
this.tbSearch.KeyDown += (s1, e1) => { this.tbSearch.KeyDown += (s1, e1) => {

View File

@@ -17,6 +17,9 @@ namespace FEQ0000
public fImpEquipment(fEquipment.eTabletype type_) public fImpEquipment(fEquipment.eTabletype type_)
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
Properties.Settings.Default["EEEntities"] = FCOMMON.info.CS;
this.FormClosed += __Closed; this.FormClosed += __Closed;
dt = new dsEQ.EETGW_EquipmentDataTable(); dt = new dsEQ.EETGW_EquipmentDataTable();
} }

View File

@@ -16,6 +16,9 @@ namespace FEQ0000
{ {
//SqlServerTypes.Utilities.LoadNativeAssemblies(AppDomain.CurrentDomain.BaseDirectory); //SqlServerTypes.Utilities.LoadNativeAssemblies(AppDomain.CurrentDomain.BaseDirectory);
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
Properties.Settings.Default["EEEntities"] = FCOMMON.info.CS;
this.dt = dt_; this.dt = dt_;
this.Text = "Equipment List(" + title + ")"; this.Text = "Equipment List(" + title + ")";
} }

View File

@@ -15,6 +15,8 @@ namespace FEQ0000.Purchase
public fInputSC() public fInputSC()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
Properties.Settings.Default["EEEntities"] = FCOMMON.info.CS;
} }
} }
} }

View File

@@ -15,6 +15,8 @@ namespace FEQ0000.Purchase
public fMailForm() public fMailForm()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
Properties.Settings.Default["EEEntities"] = FCOMMON.info.CS;
} }
private void fMailForm_Load(object sender, EventArgs e) private void fMailForm_Load(object sender, EventArgs e)

View File

@@ -21,6 +21,9 @@ namespace FEQ0000
public fPurchase() public fPurchase()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
Properties.Settings.Default["EEEntities"] = FCOMMON.info.CS;
fn_fpcolsize = util.MakeFilePath(util.CurrentPath, "formSetting", "fp_" + this.Name + ".ini"); fn_fpcolsize = util.MakeFilePath(util.CurrentPath, "formSetting", "fp_" + this.Name + ".ini");
this.dsPurchase.Purchase.TableNewRow += Purchase_TableNewRow; this.dsPurchase.Purchase.TableNewRow += Purchase_TableNewRow;
this.FormClosing += FPurchase_FormClosing; this.FormClosing += FPurchase_FormClosing;

View File

@@ -15,6 +15,9 @@ namespace FEQ0000
public fPurchaseNRList(dsPurchase.PurchaseDataTable dt) public fPurchaseNRList(dsPurchase.PurchaseDataTable dt)
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
Properties.Settings.Default["EEEntities"] = FCOMMON.info.CS;
this.ds1.Purchase.Merge(dt); this.ds1.Purchase.Merge(dt);
this.ds1.AcceptChanges(); this.ds1.AcceptChanges();
} }

View File

@@ -19,6 +19,9 @@ namespace FEQ0000
public fPurchase_Add(dsPurchase.PurchaseRow dr_) public fPurchase_Add(dsPurchase.PurchaseRow dr_)
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
Properties.Settings.Default["EEEntities"] = FCOMMON.info.CS;
bsManu = new BindingSource(); bsManu = new BindingSource();
bsModel = new BindingSource(); bsModel = new BindingSource();
this.dr = dr_; this.dr = dr_;

View File

@@ -18,6 +18,9 @@ namespace FEQ0000
public fPurchase_AddS(dsPurchase.PurchaseRow dr_) public fPurchase_AddS(dsPurchase.PurchaseRow dr_)
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
Properties.Settings.Default["EEEntities"] = FCOMMON.info.CS;
bsManu = new BindingSource(); bsManu = new BindingSource();
bsModel = new BindingSource(); bsModel = new BindingSource();
this.dr = dr_; this.dr = dr_;

View File

@@ -14,6 +14,8 @@ namespace FEQ0000
public fPurchase_Data() public fPurchase_Data()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
Properties.Settings.Default["EEEntities"] = FCOMMON.info.CS;
} }
private void button1_Click(object sender, EventArgs e) private void button1_Click(object sender, EventArgs e)

View File

@@ -16,6 +16,8 @@ namespace FEQ0000
public fPurchase_Import() public fPurchase_Import()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
Properties.Settings.Default["EEEntities"] = FCOMMON.info.CS;
this.FormClosed += __Closed; this.FormClosed += __Closed;
} }

View File

@@ -16,6 +16,8 @@ namespace FEQ0000
public fPurchase_ImportO() public fPurchase_ImportO()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
Properties.Settings.Default["EEEntities"] = FCOMMON.info.CS;
this.FormClosed += __Closed; this.FormClosed += __Closed;
} }

View File

@@ -15,6 +15,8 @@ namespace FEQ0000
public fPurchase_excelimport() public fPurchase_excelimport()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
Properties.Settings.Default["EEEntities"] = FCOMMON.info.CS;
this.FormClosed += __Closed; this.FormClosed += __Closed;
} }

View File

@@ -14,6 +14,8 @@ namespace FEQ0000.Purchase
public rPurchase() public rPurchase()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
Properties.Settings.Default["EEEntities"] = FCOMMON.info.CS;
} }
private void rPurchase_Load(object sender, EventArgs e) private void rPurchase_Load(object sender, EventArgs e)

View File

@@ -17,6 +17,12 @@ namespace FPJ0000.JobReport_
public fJobChartMenu() public fJobChartMenu()
{ {
InitializeComponent(); InitializeComponent();
Properties.Settings.Default["gwcs"] = FCOMMON.info.CS;
Properties.Settings.Default["EEEntities"] = FCOMMON.info.CS;
Properties.Settings.Default["EEEntitiesLayout"] = FCOMMON.info.CS;
this.dts.Value = DateTime.Parse(DateTime.Now.AddMonths(-1).ToString("yyyy-MM-01")); this.dts.Value = DateTime.Parse(DateTime.Now.AddMonths(-1).ToString("yyyy-MM-01"));
this.dte.Value = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-01")).AddDays(-1); this.dte.Value = DateTime.Parse(DateTime.Now.ToString("yyyy-MM-01")).AddDays(-1);
} }

View File

@@ -16,6 +16,7 @@ namespace FPM0000
{ {
InitializeComponent(); InitializeComponent();
this.dsMSSQL.SPMaster.TableNewRow += minutes_TableNewRow; this.dsMSSQL.SPMaster.TableNewRow += minutes_TableNewRow;
} }
void minutes_TableNewRow(object sender, DataTableNewRowEventArgs e) void minutes_TableNewRow(object sender, DataTableNewRowEventArgs e)