如何从列表视图获取项目以在组合框中使用它们
我尝试从列表视图中获取项目以在组合框中使用它们,这样我就可以选择其中之一来创建订单。在我的应用程序中,我使用 3 个列表视图以单独的形式存储一些信息。根据那里存储的信息,我想创建一个订单。 我正在使用 Visual C++ 2008 Express。
请帮忙!!!
I try to get the items from a listview to use them in a combobox, so I can select one of them to create an order. Im my application I use 3 listview in separate forms to store some informations. Based on the informations stored there I want to create a order.
I'm using visual c++ 2008 express.
Please help!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用普通的 Win32 API,您可以使用
LVM_GETITEM
/LVM_GETITEMTEXT
/LVM_GETNEXTITEM
消息,将其发送到控件。或者,您可以使用便捷宏
ListView_GetItem( )
/ListView_GetItemText()
/ListView_GetNextItem()
。Using the plain Win32 API, you use
LVM_GETITEM
/LVM_GETITEMTEXT
/LVM_GETNEXTITEM
messages by sending them to the control.Alternatively you can use the convencience macros
ListView_GetItem()
/ListView_GetItemText()
/ListView_GetNextItem()
.