TStringAlignGrid 从 D6 到 DelphiXE

发布于 2024-11-06 08:36:56 字数 163 浏览 0 评论 0原文

有没有人能够将 Andreas Hörstemeier 的 StringAlignGrid 从 Delphi 6(他的最新版本)转换为在 Delphi XE 下工作?

我有几个广泛使用 StringAlignGrid 的项目,如果可能的话,我宁愿不转换为另一个网格。

史蒂夫...

Has anyone been able to convert the StringAlignGrid by Andreas Hörstemeier from Delphi 6 (his latest release) to work under Delphi XE?

I have several projects that use StringAlignGrid extensivly and I would rather not convert to another grid if possible.

Steve...

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

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

发布评论

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

评论(2

故事与诗 2024-11-13 08:36:56

源代码是免费提供的,因此如果您需要立即使其工作,您可以尝试自己完成。http://www.hoerstemeier.com/files/grid21.zip

我很快就加载了源代码,这并不难。我有一个可以在这里编译的版本,但我真的没有时间测试它。我花了大约 3 分钟才让它工作,所以我建议你按照我刚才所做的操作:

  • ah_def.inc 需要更改添加 XE;否则,您将得到大量适用于 delphi 3 之前版本的代码。这修复了大多数编译器错误。
  • ah_def.inc 中有一个条件定义,它定义了 ShortString。如果已定义,您将获得 String 而不是 ansiststring
  • 几个 PString 变量需要更改为 PAnsiString(除非您想要 unicode),
  • 两个 PChar 需要更改为 PAnsiChar。

如果您确实成功了,请不要忘记将您的版本发送给 Andreas。

The source is freely available, so if you need to get this working straight away, you could just attempt to do it yourself.http://www.hoerstemeier.com/files/grid21.zip

I've quickly loaded the source and it's not that hard to do. I've got a version that compiles here, but I don't really have the time to test it. It took me about 3 minutes to get it working, so I suggest you just do what I just did:

  • ah_def.inc needs to be changed add XE; Otherwise you'll get a lot of code that's meant for pre-delphi 3. That fixes most of the compiler errors.
  • there's a conditional define in ah_def.inc that defines ShortString. If it's defined, you'll get String instead of ansistring.
  • A couple of PString variables that need to be changed to PAnsiString (unless you want to have unicode)
  • two PChar's that need to be PAnsiChar.

If you do make it work, don't forget to send your version to Andreas.

甜心小果奶 2024-11-13 08:36:56

我过去在另一个组件中遇到过这个问题。联系作者是解决方案:我接受保密协议,免费收到来源。

I faced this problem in the past for another component. Contacting the author was the solution : I received the sources for free accepting a confidentialty agreement.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文