Add caption to End-User License Aggreement form

Added LastVersion to config to present EULA on version change
Display EULA when version changes
Added Property to change button label (Agree for EULA)
Changed DialogResult to OK for OK Button.
This commit is contained in:
Rich
2012-04-18 17:18:11 +00:00
parent 62368e725b
commit 628e9cf390
7 changed files with 71 additions and 5 deletions

View File

@@ -255,5 +255,17 @@ namespace VEPROMS.Properties {
this["DefaultDB"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("0.0")]
public string LastVersion {
get {
return ((string)(this["LastVersion"]));
}
set {
this["LastVersion"] = value;
}
}
}
}

View File

@@ -62,5 +62,8 @@
<Setting Name="DefaultDB" Type="System.String" Scope="User">
<Value Profile="(Default)" />
</Setting>
<Setting Name="LastVersion" Type="System.String" Scope="User">
<Value Profile="(Default)">0.0</Value>
</Setting>
</Settings>
</SettingsFile>