TCustomDataSet C++ 建设者
除了作为 C++ Builder 中的示例项目提供的 TTextDataset 示例之外,我正在寻找 C++ 中的 TCustomDataSet 实现示例。
TTextDataset 很难学习,因为代码没有很好地记录,并且只显示了单个字段示例。
我已经创建了自己的 TDataSet 派生类,它大部分都可以工作,但是,GUI 控件(主要是网格)对于某些用例来说不能 100% 工作。
任何人都有关于这个主题的一些很好的链接...
这是我用来学习的示例代码的链接: http://195.19.138.139:3000/ p/SOFTWARE/temp/CBuilder5/Examples/DBTasks/TextData/textdataset.cpp
I'm looking for an example of a TCustomDataSet implementation in C++ beyond the TTextDataset example that ships as an example project within C++ Builder.
The TTextDataset is hard to learn from because the code is not documented very well and it only shows a single field example.
I've created my own class that descends TDataSet and it mostly works however, the GUI controls (grids mostly) don't work 100% for certain use cases.
Anyone have some good links on this topic...
Here is a link to the example code I used to study from:
http://195.19.138.139:3000/p/SOFTWARE/temp/CBuilder5/Examples/DBTasks/TextData/textdataset.cpp
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我有几个例子。 但不幸的是他们在德尔福,但你应该明白:
示例 1
示例 2
第二个有更多解释,是我使用的一个基于绑定到 UI 的自定义数据集(在 delphi 中)。
I have a couple of examples. but unfortunately they are in Delphi, but you should get the idea:
Example 1
Example 2
The second one goes into a bit more explanation and is one I used to base a custom dataset on that did binding to UI (In delphi).