update 20241120
This commit is contained in:
@@ -155,11 +155,11 @@ namespace OnDoc.UIControls
|
||||
db.Get_Tabledata("Select office_vorlagenr,kopfzeile_generieren, bcpt,bcpl, bcw, bch, bchorizontal from office_vorlage where office_vorlagenr="+dr["office_vorlagenr"].ToString(),false,true);
|
||||
this.vorlagenr = Convert.ToInt32(dr["office_vorlagenr"]);
|
||||
this.kopfzeile_generieren = false;
|
||||
this.barcode_left = Convert.ToInt32(dr["bcpl"]);
|
||||
this.barcode_top = Convert.ToInt32(dr["bcpt"]);
|
||||
this.barcode_width = Convert.ToInt32(dr["bcw"]);
|
||||
this.barcode_height = Convert.ToInt32(dr["bch"]);
|
||||
this.barcode_horizontal = Convert.ToInt32(dr["bchorizontal"]);
|
||||
this.barcode_left = Convert.ToInt32(db.dsdaten.Tables[0].Rows[0]["bcpl"]);
|
||||
this.barcode_top = Convert.ToInt32(db.dsdaten.Tables[0].Rows[0]["bcpt"]);
|
||||
this.barcode_width = Convert.ToInt32(db.dsdaten.Tables[0].Rows[0]["bcw"]);
|
||||
this.barcode_height = Convert.ToInt32(db.dsdaten.Tables[0].Rows[0]["bch"]);
|
||||
this.barcode_horizontal = Convert.ToInt32(db.dsdaten.Tables[0].Rows[0]["bchorizontal"]);
|
||||
try
|
||||
{
|
||||
if (Convert.ToBoolean(db.dsdaten.Tables[0].Rows[0][1]) == true) { this.kopfzeile_generieren = true; }
|
||||
|
||||
Reference in New Issue
Block a user