summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Zimniewicz <mzimniew@man.poznan.pl>2016-11-19 17:51:22 +0100
committerMichal Zimniewicz <mzimniew@man.poznan.pl>2016-11-19 17:51:22 +0100
commit211efd174ac0333cdf9f40695ea5673e5bfb7b95 (patch)
treec5c22053a517f1b9bbb553171e84eb4334f24377
parent0cfcb31daea464584315263225381ba53c24a9eb (diff)
parent6f5d3a1d030fe7d66d56c71bdacb2534a9c98561 (diff)
Merge branch 'bidding-data' into hand-evaluation
-rw-r--r--Aktywator/Bws.cs26
-rw-r--r--Aktywator/MainForm.Designer.cs26
2 files changed, 52 insertions, 0 deletions
diff --git a/Aktywator/Bws.cs b/Aktywator/Bws.cs
index 87c9081..8b92d7f 100644
--- a/Aktywator/Bws.cs
+++ b/Aktywator/Bws.cs
@@ -54,6 +54,8 @@ namespace Aktywator
settings.Add(new Setting("BM2AutoBoardNumber", main.xAutoBoardNumber, this));
settings.Add(new Setting("BM2ResetFunctionKey", main.xResetFunctionKey, this));
settings.Add(new Setting("BM2ViewHandrecord", main.xViewHandrecord, this));
+ settings.Add(new Setting("BM2RecordBidding", main.xCollectBidding, this));
+ settings.Add(new Setting("BM2RecordPlay", main.xCollectPlay, this));
}
public string sectionsForHandRecords()
@@ -133,6 +135,8 @@ namespace Aktywator
settings.Add(new Setting("BM2NameSource", "integer", "2"));
settings.Add(new Setting("BM2ViewHandrecord", "bit", "false"));
settings.Add(new Setting("BM2EnterHandrecord", "bit", "false"));
+ settings.Add(new Setting("BM2RecordBidding", "bit", "false"));
+ settings.Add(new Setting("BM2RecordPlay", "bit", "false"));
settings.Add(new Setting("Name", "text(18)", "''", "PlayerNumbers"));
settings.Add(new Setting("Updated", "bit", "false", "PlayerNumbers"));
@@ -182,6 +186,28 @@ namespace Aktywator
catch (OleDbException)
{
}
+ try
+ {
+ sql.query("CREATE TABLE PlayData ("
+ + "`ID` autoincrement, `Section` integer, `Table` integer, `Round` integer, `Board` integer,"
+ + "`Counter` integer, `Direction` text(2), `Card` text(10), `DateLog` datetime,"
+ + "`TimeLog` datetime, `Erased` bit"
+ + ");");
+ }
+ catch (OleDbException)
+ {
+ }
+ try
+ {
+ sql.query("CREATE TABLE BiddingData ("
+ + "`ID` autoincrement, `Section` integer, `Table` integer, `Round` integer, `Board` integer,"
+ + "`Counter` integer, `Direction` text(2), `Bid` text(10), `DateLog` datetime,"
+ + "`TimeLog` datetime, `Erased` bit"
+ + ");");
+ }
+ catch (OleDbException)
+ {
+ }
}
public void updateSettings()
diff --git a/Aktywator/MainForm.Designer.cs b/Aktywator/MainForm.Designer.cs
index 8a68b44..03a692f 100644
--- a/Aktywator/MainForm.Designer.cs
+++ b/Aktywator/MainForm.Designer.cs
@@ -105,6 +105,8 @@
this.bLoadHands = new System.Windows.Forms.Button();
this.timer = new System.Windows.Forms.Timer(this.components);
this.openPBN = new System.Windows.Forms.OpenFileDialog();
+ this.xCollectBidding = new System.Windows.Forms.CheckBox();
+ this.xCollectPlay = new System.Windows.Forms.CheckBox();
this.groupBoxTop.SuspendLayout();
this.menu.SuspendLayout();
this.statusStrip1.SuspendLayout();
@@ -240,6 +242,8 @@
//
// tabPage1
//
+ this.tabPage1.Controls.Add(this.xCollectPlay);
+ this.tabPage1.Controls.Add(this.xCollectBidding);
this.tabPage1.Controls.Add(this.xViewHandrecord);
this.tabPage1.Controls.Add(this.xResultsOverview);
this.tabPage1.Controls.Add(this.bLoad);
@@ -894,6 +898,26 @@
//
this.openPBN.Filter = "PBN|*.pbn";
//
+ // xCollectBidding
+ //
+ this.xCollectBidding.AutoSize = true;
+ this.xCollectBidding.Location = new System.Drawing.Point(339, 115);
+ this.xCollectBidding.Name = "xCollectBidding";
+ this.xCollectBidding.Size = new System.Drawing.Size(97, 17);
+ this.xCollectBidding.TabIndex = 30;
+ this.xCollectBidding.Text = "zbieraj licytacjÄ™";
+ this.xCollectBidding.UseVisualStyleBackColor = true;
+ //
+ // xCollectPlay
+ //
+ this.xCollectPlay.AutoSize = true;
+ this.xCollectPlay.Location = new System.Drawing.Point(339, 138);
+ this.xCollectPlay.Name = "xCollectPlay";
+ this.xCollectPlay.Size = new System.Drawing.Size(146, 17);
+ this.xCollectPlay.TabIndex = 31;
+ this.xCollectPlay.Text = "zbieraj przebieg rozgrywki";
+ this.xCollectPlay.UseVisualStyleBackColor = true;
+ //
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
@@ -1008,6 +1032,8 @@
private System.Windows.Forms.Label label13;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.TextBox eOomRounds;
+ public System.Windows.Forms.CheckBox xCollectPlay;
+ public System.Windows.Forms.CheckBox xCollectBidding;
}
}