Skip to content

Commit 88499b9

Browse files
authored
Add files via upload
1 parent 8c22e1c commit 88499b9

27 files changed

+228
-40
lines changed

ExcelTemplates/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.2.13")]
36-
[assembly: AssemblyFileVersion("1.0.2.13")]
35+
[assembly: AssemblyVersion("1.0.2.15")]
36+
[assembly: AssemblyFileVersion("1.0.2.15")]
0 Bytes
Binary file not shown.
3 KB
Binary file not shown.
0 Bytes
Binary file not shown.

ExcelTemplates/bin/Debug/zint.exe

676 KB
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

ExcelTemplatesLib/CFGForm.Designer.cs

Lines changed: 85 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ExcelTemplatesLib/CFGForm.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ private void LoadCfg()
4545
qrip.Checked = pluginConfig.QRIP;
4646
matrixBar.Checked = pluginConfig.MatrixBar;
4747
code39.Checked = pluginConfig.Code39Bar;
48+
comboBox1.Text = pluginConfig.MatrixCode;
49+
comboBox2.Text = pluginConfig.SingleCode;
4850
}
4951

5052
private void SaveCfg()
@@ -118,5 +120,17 @@ private void code39_CheckedChanged(object sender, EventArgs e)
118120
pluginConfig.Code39Bar = code39.Checked;
119121
SaveCfg();
120122
}
123+
124+
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
125+
{
126+
pluginConfig.MatrixCode = comboBox1.Text;
127+
SaveCfg();
128+
}
129+
130+
private void comboBox2_SelectedIndexChanged(object sender, EventArgs e)
131+
{
132+
pluginConfig.SingleCode = comboBox2.Text;
133+
SaveCfg();
134+
}
121135
}
122136
}

0 commit comments

Comments
 (0)