Jump to content

Listview_GetItem count Function?


Syed23
 Share

Recommended Posts

Hi All,

Do we any function to read how many subitems are there under a column? like i have below example which is having 3 rows of data in a column. i want to read i many items are there in that column. any suggestion ?

#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
Opt('MustDeclareVars', 1)
Example()
Func Example()
 Local $listview, $button, $item1, $item2, $item3, $input1, $msg
 
 GUICreate("listview items", 220, 250, 100, 200, -1, $WS_EX_ACCEPTFILES)
 GUISetBkColor(0x00E0FFFF)  ; will change background color
 $listview = GUICtrlCreateListView("col1  |col2|col3  ", 10, 10, 200, 150);,$LVS_SORTDESCENDING)
 $button = GUICtrlCreateButton("Value?", 75, 170, 70, 20)
 $item1 = GUICtrlCreateListViewItem("item2|col22|col23", $listview)
 $item2 = GUICtrlCreateListViewItem("item1|col12|col13", $listview)
 $item3 = GUICtrlCreateListViewItem("item3|col32|col33", $listview)
 $input1 = GUICtrlCreateInput("", 20, 200, 150)
 GUICtrlSetState(-1, $GUI_DROPACCEPTED)   ; to allow drag and dropping
 GUISetState()
 GUICtrlSetData($item2, "ITEM1")
 GUICtrlSetData($item3, "||COL33")
 GUICtrlDelete($item1)
 Do
  $msg = GUIGetMsg()
  
  Select
   Case $msg = $button
    MsgBox(0, "listview item", GUICtrlRead(GUICtrlRead($listview)), 2)
   Case $msg = $listview
    MsgBox(0, "listview", "clicked=" & GUICtrlGetState($listview), 2)
  EndSelect
 Until $msg = $GUI_EVENT_CLOSE
EndFunc   ;==>Example

Thank you,Regards,[font="Garamond"][size="4"]K.Syed Ibrahim.[/size][/font]

Link to comment
Share on other sites

_GUICtrlListView_GetItemCount

_GUICtrlListView_GetColumnCount

Programming today is a race between software engineers striving to
build bigger and better idiot-proof programs, and the Universe
trying to produce bigger and better idiots.
So far, the Universe is winning.

Link to comment
Share on other sites

  • Moderators

Syed23,

Dog eaten your Help file? :doh:

_GUICtrlListView_GetItemCount is what you want. :oops:

M23

Edit: Obviously not as you found it! :bye:

Edited by Melba23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...