delphi中的动态数组
我在delphi 7中创建了TLabel和TCombobox的打包对象(TMyComponent)。 我创建了 TMyComponent 的动态数组(MyArray)。现在,单击“添加”按钮,我增加了 MyArray 的长度,并创建了 TLabel 和 TCombobox 对象并显示在屏幕上。如果我添加了 5 个组件,我们如何获取 Myaaray 的当前选定组件意味着如果我从屏幕中选择了第 3 个组件,那么我如何获得值 3 作为回报?谢谢你的帮助
I have created an packaged object (TMyComponent) of TLabel and TCombobox in delphi 7.
I have created an dynamic array(MyArray) of TMyComponent. Now on Add button click I have increamented length of MyArray and create object of TLabel and TCombobox and displayed on screen. If I have added 5 components, How we can get current selected component of Myaaray means if i selected 3rd component from screen then how can i get value 3 in return? thanks for help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您正在寻找这样的函数:
我相信如何调用这个函数将是显而易见的。
I think you are looking for a function like this:
I trust it will be obvious how to call this function.