Fixed max services limited to 100

This commit is contained in:
Adolfo Gómez 2013-12-13 15:16:51 +00:00
parent 77127664af
commit 53258f2d7b
2 changed files with 21 additions and 1 deletions

View File

@ -46,7 +46,7 @@ namespace UdsAdmin
{
string[] args = Environment.GetCommandLineArgs();
UdsAdmin.Properties.Settings.Default.debug = true;
UdsAdmin.Properties.Settings.Default.debug = false;
foreach (string arg in args)
{
if (arg == "--enabledebug" || arg == "--enabledevel")

View File

@ -202,6 +202,11 @@
// cacheL2ServicesBox
//
resources.ApplyResources(this.cacheL2ServicesBox, "cacheL2ServicesBox");
this.cacheL2ServicesBox.Maximum = new decimal(new int[] {
10000,
0,
0,
0});
this.cacheL2ServicesBox.Name = "cacheL2ServicesBox";
//
// cacheL2Label
@ -212,6 +217,11 @@
// cacheServicesBox
//
resources.ApplyResources(this.cacheServicesBox, "cacheServicesBox");
this.cacheServicesBox.Maximum = new decimal(new int[] {
10000,
0,
0,
0});
this.cacheServicesBox.Name = "cacheServicesBox";
//
// label5
@ -227,6 +237,11 @@
// initialServicesBox
//
resources.ApplyResources(this.initialServicesBox, "initialServicesBox");
this.initialServicesBox.Maximum = new decimal(new int[] {
10000,
0,
0,
0});
this.initialServicesBox.Name = "initialServicesBox";
//
// label7
@ -237,6 +252,11 @@
// maxServicesBox
//
resources.ApplyResources(this.maxServicesBox, "maxServicesBox");
this.maxServicesBox.Maximum = new decimal(new int[] {
10000,
0,
0,
0});
this.maxServicesBox.Name = "maxServicesBox";
//
// tableLayoutPanel1