●如何实现条码错位显示?
答:内容行创建两个条码(组件名称为Barcode1、Barcode2),内容行事件中写入如下内容:
if(Report.SystemVarValue(8)%2==0){
Report.ControlByName("Barcode1").Visible = 1;
Report.ControlByName("Barcode2").Visible = 0;
}else{
Report.ControlByName("Barcode1").Visible = 0;
Report.ControlByName("Barcode2").Visible = 1;
}