为您找到"
list1.itemdata
"相关结果约100,000,000个
Remarks. The ItemData property enables you to iterate through the list of entries in a combo box or list box. For example, suppose you wanted to iterate through all of the items in a list box to search for a particular entry. Use the ListCount property to determine the number of rows in the list box, and then use the ItemData property to return the data for the bound column in each row.
List1.List(X) or List1.ItemData(X) The List array is a zero-based array of STRING items and is what the user sees in the ListBox. The ItemData array is an array of LONG INTEGER items in which you can OPTIONALLY place a numeric data item associated with the corresponding string item. If ItemData is used, each element is always associated with ...
For a listbox, after you add an item set its x.itemdata(x.newindex) to the index of an array (or UDT array) that contains the corresponding data.. For a listview you can similarly use an individual items .Tag or .Key to store an array (or collection) index.. Linking a listbox example;. Option Explicit Private Type TFileData OriginalFilePath As String ListBoxIndex As Integer MoreBlaBla As ...
Dim eItem as Variant For Each eItem in wherever_the_data_comes_from lbData.AddItem eItem ' Raw data value that the use will see later lbSorter.AddItem format_for_consistent_sorting( eItem ) ' Rehash the data to make it sortable lbSorter.ItemData( lbSorter.NewIndex ) = lbData.NewIndex ' Link the sorted item to the raw data item Next lbVisible.Clear For iSub = 0 To lbSorter.ListCount - 1 ...
备注. ItemData 属性使您能够循环访问组合框或列表框中的项的列表。 例如,假设您想要在循环中的所有项列表框来查找特定的项。 使用 ListCount 属性确定列表框中的行数,然后使用 ItemData 属性返回每行中绑定列的数据。. 您可以使用 ItemData 属性返回数据只能从列表框中选定的行。
Perhaps I'm only allowed to store a number in the ITEMDATA for a listbox. If so, how can I get around this? With rsSheetOrder .Open strSQL, OraCon, adOpenForwardOnly, adLockReadOnly Do While Not .EOF List1.AddItem
List.itemdata and List.newindex with the ones from a Listview I have a list and I want to replace it with a listview, but i cant cause my list uses: frmMain.List1.ItemData(frmMain.List1.NewIndex) = xx how would this line be with a listview ? I tried alot but didnt found anything thanks...
ItemData的用法:List1.ItemData(0)=123 ItemData 属性是一个长整型数的数组,它有与控件的 List 属性相同数目的项目。可以用与每一项相关的数来标识它们。例如,在 ListBox 控件中,可以用雇员身份号来标识每一个雇员的名字。
List1.Selected(1) = True ?List1.ListIndex Now, you will notice that list and itemdata return different string because one is zero based and the other is one based.
List1.ItemData(i) = CLng(MySet.Fields("Comp_id") Robert . Upvote 0 Downvote. Nov 21, 2002 #6 johnwm Programmer. Feb 7, 2001 8,469 GB. As Foada says, I believe you need to use the AddItem method to put the ListItem in, then put the ItemData in after generating the ListItem. _____ If you want to get the best response to a question ...