delphi-2010 中 fbarcode 组件的使用

发布于 2024-12-03 04:26:42 字数 122 浏览 0 评论 0原文

我使用 fbarcode 1.27(带有源代码的免费组件)在 Delphi6 中制作和打印条形码(使用快速报告)。但现在我尝试使用Delphi 2010,但它不起作用。

有人有解决办法吗?

TIA

I used the fbarcode 1.27 (Free component with source) to make and print barcodes (Using quick reports) in Delphi6. But now I tried with Delphi 2010 and it does not work.

Someone have a solution?

TIA

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡写薰衣草的香 2024-12-10 04:26:42

我这样做了:用 string 替换 char 数组(在 2 个地方)

function TAsBarcode.Code_Codabar:string;
type TCodabar =
  record
    c : char;
    data : string; //array[0..6] of char; 
  end;

function TAsBarcode.Code_39:string;

type TCode39 =
  record
    c : char;
    data : string; //array[0..9] of char;
    chk: shortint;
  end;

I did this: replace the array of char with string (in 2 places)

function TAsBarcode.Code_Codabar:string;
type TCodabar =
  record
    c : char;
    data : string; //array[0..6] of char; 
  end;

function TAsBarcode.Code_39:string;

type TCode39 =
  record
    c : char;
    data : string; //array[0..9] of char;
    chk: shortint;
  end;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文