periodic commit
This commit is contained in:
parent
f8f990d84e
commit
b48d2554c2
@ -1,5 +1,10 @@
|
||||
<?xml version="1.0"?>
|
||||
<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>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
|
||||
</startup>
|
||||
@ -22,4 +27,14 @@
|
||||
<add name="PdfScribeAll" value="Verbose"/>
|
||||
</switches>
|
||||
</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>
|
||||
|
@ -32,7 +32,7 @@ namespace PdfScribe
|
||||
#region Other constants
|
||||
const string traceSourceName = "PdfScribe";
|
||||
|
||||
const string defaultOutputFilename = "OAISISSOFTSCAN.PDF";
|
||||
const string defaultOutputFilename = "PDFSCRIBE.PDF";
|
||||
|
||||
#endregion
|
||||
|
||||
@ -143,6 +143,12 @@ namespace PdfScribe
|
||||
errorDialogInstructionUnexpectedError);
|
||||
}
|
||||
|
||||
|
||||
static String GetOutputFilename()
|
||||
{
|
||||
|
||||
return String.Empty;
|
||||
}
|
||||
/// <summary>
|
||||
/// Displays up a topmost, OK-only message box for the error message
|
||||
/// </summary>
|
||||
|
20
PdfScribe/Properties/Settings.Designer.cs
generated
20
PdfScribe/Properties/Settings.Designer.cs
generated
@ -1,7 +1,7 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 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
|
||||
// the code is regenerated.
|
||||
@ -22,5 +22,23 @@ namespace PdfScribe.Properties {
|
||||
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'?>
|
||||
<SettingsFile xmlns="uri:settings" CurrentProfile="(Default)">
|
||||
<Profiles>
|
||||
<Profile Name="(Default)" />
|
||||
</Profiles>
|
||||
<Settings />
|
||||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="PdfScribe.Properties" GeneratedClassName="Settings">
|
||||
<Profiles />
|
||||
<Settings>
|
||||
<Setting Name="DefaultOutputFile" Type="System.String" Scope="Application">
|
||||
<Value Profile="(Default)">%Temp%\PDFSCRIBE.PDF</Value>
|
||||
</Setting>
|
||||
<Setting Name="AskUserForOutputFilename" Type="System.Boolean" Scope="Application">
|
||||
<Value Profile="(Default)">False</Value>
|
||||
</Setting>
|
||||
</Settings>
|
||||
</SettingsFile>
|
Loading…
Reference in New Issue
Block a user