-
Notifications
You must be signed in to change notification settings - Fork 1
/
printCbar.cs
135 lines (114 loc) · 3.86 KB
/
printCbar.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
using MundoMusical.CODE_BAR;
using MundoMusical.CONFIGURACION_DE_IMPRESION;
using MundoMusical.DB;
using MundoMusical.LABELS.TEMPLATES;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MundoMusical.LABELS
{
public class printCbar
{
private string id;
private cb codabar;
private labelBase25_35 reporte;
private bool flag = false;
private dbop db;
public printCbar()
{
this.codabar = new cb();
this.db = new dbop();
}
public void setParams(int id)
{
this.flag = false;
this.reporte = new labelBase25_35();
if (!this.codabar.saveImage(this.codabar.getImage(id.ToString(),1280,1280,false), "tmp", genericDefinitions.CODEBARSPATH)){
genericDefinitions.error("Error de interoperabilidad con el Fichero");
return;
}
try
{
this.reporte.SetParameterValue("imageSource", genericDefinitions.CODEBARSPATH + "\\tmp.jpeg");
this.reporte.SetParameterValue("id", id.ToString());
}
catch(Exception ex)
{
genericDefinitions.error(ex.ToString());
return;
}
this.flag = true;
}
public void print()
{
if (this.flag)
{
try
{
if (printerControl.printIsSafe(this.db.getprinteretiquetaname()))
{
this.reporte.PrintOptions.PrinterName = this.db.getprinteretiquetaname();
this.reporte.PrintToPrinter(1, true, 0, 0);
}
else
{
using (printWarning pw = new printWarning())
{
pw.ShowDialog();
}
}
}
catch (Exception ex)
{
genericDefinitions.error(ex.ToString());
}
}
else
{
genericDefinitions.error("No se puede proceder a realizar la impresión, consulte al desarrollador");
}
this.reporte.Close();
this.reporte.Dispose();
}
public void print(int veces)
{
if (veces > 0)
{
if (this.flag)
{
try
{
if (printerControl.printIsSafe(this.db.getprinteretiquetaname()))
{
this.reporte.PrintOptions.PrinterName = this.db.getprinteretiquetaname();
this.reporte.PrintToPrinter(veces, true, 0, 0);
}
else
{
using (printWarning pw = new printWarning())
{
pw.ShowDialog();
}
}
}
catch (Exception ex)
{
genericDefinitions.error(ex.ToString());
}
}
else
{
genericDefinitions.error("No se puede proceder a realizar la impresión, consulte al desarrollador");
}
}
else
{
genericDefinitions.error("Numero de copias Invalido.");
}
this.reporte.Close();
this.reporte.Dispose();
}
}
}