IO-70 OEC Connection Settings

This commit is contained in:
Patrick Fic
2021-11-29 14:52:17 -08:00
parent 74cb593c66
commit 1db1b0c40c
11 changed files with 763 additions and 83 deletions

View File

@@ -159,6 +159,15 @@ namespace BodyshopPartner.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Browse for EMS Export Path.
/// </summary>
public static string Label_BrowseForEmsExport {
get {
return ResourceManager.GetString("Label_BrowseForEmsExport", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Browse for QuickBooks File.
/// </summary>
@@ -177,6 +186,15 @@ namespace BodyshopPartner.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to EMS Export Path.
/// </summary>
public static string Label_EmsExport {
get {
return ResourceManager.GetString("Label_EmsExport", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to File Path.
/// </summary>

View File

@@ -150,12 +150,18 @@
<data name="Label_AutoStartMonitor" xml:space="preserve">
<value>Auto-start Monitors</value>
</data>
<data name="Label_BrowseForEmsExport" xml:space="preserve">
<value>Browse for EMS Export Path</value>
</data>
<data name="Label_BrowseForQb" xml:space="preserve">
<value>Browse for QuickBooks File</value>
</data>
<data name="Label_BrowsePaintScalePath" xml:space="preserve">
<value>Browse Paint Scale Path</value>
</data>
<data name="Label_EmsExport" xml:space="preserve">
<value>EMS Export Path</value>
</data>
<data name="Label_FilePath" xml:space="preserve">
<value>File Path</value>
</data>

View File

@@ -152,5 +152,17 @@ namespace BodyshopPartner.Properties {
this["PaintScalePath"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("C:\\CIECA\\MITCHELL\\EXPORT")]
public string EmsExportPath {
get {
return ((string)(this["EmsExportPath"]));
}
set {
this["EmsExportPath"] = value;
}
}
}
}

View File

@@ -35,5 +35,8 @@
<Setting Name="PaintScalePath" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
<Setting Name="EmsExportPath" Type="System.String" Scope="User">
<Value Profile="(Default)">C:\CIECA\MITCHELL\EXPORT</Value>
</Setting>
</Settings>
</SettingsFile>