periodic commit
This commit is contained in:
parent
f8f990d84e
commit
b48d2554c2
@ -1,5 +1,10 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<configuration>
|
<configuration>
|
||||||
|
<configSections>
|
||||||
|
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
|
||||||
|
<section name="PdfScribe.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
|
||||||
|
</sectionGroup>
|
||||||
|
</configSections>
|
||||||
<startup>
|
<startup>
|
||||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
|
||||||
</startup>
|
</startup>
|
||||||
@ -22,4 +27,14 @@
|
|||||||
<add name="PdfScribeAll" value="Verbose"/>
|
<add name="PdfScribeAll" value="Verbose"/>
|
||||||
</switches>
|
</switches>
|
||||||
</system.diagnostics>
|
</system.diagnostics>
|
||||||
|
<applicationSettings>
|
||||||
|
<PdfScribe.Properties.Settings>
|
||||||
|
<setting name="DefaultOutputFile" serializeAs="String">
|
||||||
|
<value>%Temp%\PDFSCRIBE.PDF</value>
|
||||||
|
</setting>
|
||||||
|
<setting name="AskUserForOutputFilename" serializeAs="String">
|
||||||
|
<value>False</value>
|
||||||
|
</setting>
|
||||||
|
</PdfScribe.Properties.Settings>
|
||||||
|
</applicationSettings>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
@ -32,7 +32,7 @@ namespace PdfScribe
|
|||||||
#region Other constants
|
#region Other constants
|
||||||
const string traceSourceName = "PdfScribe";
|
const string traceSourceName = "PdfScribe";
|
||||||
|
|
||||||
const string defaultOutputFilename = "OAISISSOFTSCAN.PDF";
|
const string defaultOutputFilename = "PDFSCRIBE.PDF";
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
@ -143,6 +143,12 @@ namespace PdfScribe
|
|||||||
errorDialogInstructionUnexpectedError);
|
errorDialogInstructionUnexpectedError);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static String GetOutputFilename()
|
||||||
|
{
|
||||||
|
|
||||||
|
return String.Empty;
|
||||||
|
}
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Displays up a topmost, OK-only message box for the error message
|
/// Displays up a topmost, OK-only message box for the error message
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
20
PdfScribe/Properties/Settings.Designer.cs
generated
20
PdfScribe/Properties/Settings.Designer.cs
generated
@ -1,7 +1,7 @@
|
|||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// This code was generated by a tool.
|
// This code was generated by a tool.
|
||||||
// Runtime Version:4.0.30319.1008
|
// Runtime Version:4.0.30319.18408
|
||||||
//
|
//
|
||||||
// Changes to this file may cause incorrect behavior and will be lost if
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
// the code is regenerated.
|
// the code is regenerated.
|
||||||
@ -22,5 +22,23 @@ namespace PdfScribe.Properties {
|
|||||||
return defaultInstance;
|
return defaultInstance;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||||
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[global::System.Configuration.DefaultSettingValueAttribute("%Temp%\\PDFSCRIBE.PDF")]
|
||||||
|
public string DefaultOutputFile {
|
||||||
|
get {
|
||||||
|
return ((string)(this["DefaultOutputFile"]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[global::System.Configuration.ApplicationScopedSettingAttribute()]
|
||||||
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[global::System.Configuration.DefaultSettingValueAttribute("False")]
|
||||||
|
public bool AskUserForOutputFilename {
|
||||||
|
get {
|
||||||
|
return ((bool)(this["AskUserForOutputFilename"]));
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,12 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<SettingsFile xmlns="uri:settings" CurrentProfile="(Default)">
|
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="PdfScribe.Properties" GeneratedClassName="Settings">
|
||||||
<Profiles>
|
<Profiles />
|
||||||
<Profile Name="(Default)" />
|
<Settings>
|
||||||
</Profiles>
|
<Setting Name="DefaultOutputFile" Type="System.String" Scope="Application">
|
||||||
<Settings />
|
<Value Profile="(Default)">%Temp%\PDFSCRIBE.PDF</Value>
|
||||||
|
</Setting>
|
||||||
|
<Setting Name="AskUserForOutputFilename" Type="System.Boolean" Scope="Application">
|
||||||
|
<Value Profile="(Default)">False</Value>
|
||||||
|
</Setting>
|
||||||
|
</Settings>
|
||||||
</SettingsFile>
|
</SettingsFile>
|
Loading…
Reference in New Issue
Block a user