回 帖 发 新 帖 刷新版面

主题:[原创]Barcode赋值

procedure ShowBarcode(ALeft,ATop,Awidth,AHeight:integer;
                                AddStr:string;UAPage:TfrPage);
var
  ShowBarcode:TfrBarcodeView;
begin
  ShowBarcode:=TfrBarcodeView.Create ;
  ShowBarcode.SetBounds(ALeft,ATop,AWidth,AHeight);
  ShowBarcode.Memo.Clear ;
  //ShowBarcode.Memo.Add(AddStr);
  ShowBarcode.Memo.Values[AddStr];
  UAPage.Objects.Add(ShowBarcode);
end;

我用以上代码动态创建Barcode控件,但是值一直是默认的值(12345678),怎样才能给控件赋值,改变类型.

回复列表 (共1个回复)

沙发

已解决.

我来回复

您尚未登录,请登录后再回复。点此登录或注册