mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
fix for TPC gauge to use config settings
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
samples/in-memory/ticket-reservations/DemoWorkload/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
|
||||
*.nupkg
|
||||
samples/in-memory/ticket-reservations/packages/CircularGauge.1.0.0/CreatePackageFile.bat
|
||||
@@ -174,7 +174,7 @@
|
||||
this.txtMaxTPS.Size = new System.Drawing.Size(99, 20);
|
||||
this.txtMaxTPS.TabIndex = 37;
|
||||
this.txtMaxTPS.TabStop = false;
|
||||
this.txtMaxTPS.Text = "70";
|
||||
this.txtMaxTPS.Text = Program.MAX_TPS.ToString();
|
||||
//
|
||||
// lblRunningThread
|
||||
//
|
||||
|
||||
@@ -53,6 +53,7 @@ namespace DemoWorkload
|
||||
public FrmMain()
|
||||
{
|
||||
InitializeComponent();
|
||||
uiControls.speedDial.MaxValue = Program.MAX_TPS;
|
||||
}
|
||||
|
||||
delegate void SetInt64Callback(Int64 value);
|
||||
|
||||
Reference in New Issue
Block a user