//btFormat.SetNamedSubStringValue(\戒指\ //btFormat.SetNamedSubStringValue(\ //btFormat.SetNamedSubStringValue(\锆石\ //btFormat.SetNamedSubStringValue(\ //btFormat.SetNamedSubStringValue(\ //btFormat.SetNamedSubStringValue(\ //btFormat.SetNamedSubStringValue(\ btFormat.PrintOut(false, false); }
private void button2_Click(object sender, System.EventArgs e)
//同一模板选择打印机
//特别说明这里要测试的是同一个模板,先设置数据库再设置具名数据源的情况下报错 //报错代码为 btFormat.SetNamedSubStringValue(\找
不到具名数据源
//测试之后发现,不能同时支持数据库和具名数据源两个配置
{
this.StyleNotext.Text = \; this.HelpCodetext.Text = \;
this.ProductCategoryNametext.Text = \戒指\; this.MetalPurityNametext.Text = \红黄白\; this.MaterialTypeNametext.Text = \爆炸石\; this.RingSizetext.Text = \; this.Weighttext.Text = \; this.StoneQuantitytext.Text = \; this.StoneWeighttext.Text = \;
BarTender.Application btApp = new BarTender.Application(); BarTender.Format btFormat;
btFormat = btApp.Formats.Open(@\, false, \); btFormat.PrintSetup.IdenticalCopiesOfLabel = 1; btFormat.PrintSetup.NumberSerializedLabels = 1;
btFormat.SetNamedSubStringValue(\, this.StyleNotext.Text); btFormat.SetNamedSubStringValue(\, this.HelpCodetext.Text); btFormat.SetNamedSubStringValue(\, this.ProductCategoryNametext.Text);
btFormat.SetNamedSubStringValue(\, this.MetalPurityNametext.Text);
btFormat.SetNamedSubStringValue(\, this.MaterialTypeNametext.Text);
btFormat.SetNamedSubStringValue(\, this.RingSizetext.Text);
btFormat.SetNamedSubStringValue(\, this.Weighttext.Text);
btFormat.SetNamedSubStringValue(\, this.StoneQuantitytext.Text); btFormat.SetNamedSubStringValue(\, this.StoneWeighttext.Text);
btFormat.PrintOut(false, true); } } }