Jump to content

How can I remove ListView Items & Hide a column


bshoenhair
 Share

Recommended Posts

I have a listview in my GUI and I have a couple of issues I am unable to tackle:

1. How can I remove the selected item(s) from the gui listview ?

2. How can I hide a column in the gui listview ? I tried a blank string that should work but it doesn't, seems that extra spaces are added as a default so you are unable to hide a column.

Link to comment
Share on other sites

For deleting an item in a listview

$LVM_DELETEITEM = $LVM_DELETEITEM = 0x1008

GuiCtrlSendMsg($listview, $LVM_DELETEITEM, current_selection , 0)

For the second question go on microsoft website

at the following adress

http://msdn.microsoft.com/library/default...._deleteitem.asp

on the left part of the screen you have an explanation about all LV_xxx command I am sure you find sure to find what you search for

Edited by LOULOU
Link to comment
Share on other sites

OK, I can now delete the selected item with

$LVM_DELETEITEM = 0x1008
$ItemCount = ControlListView("listview items","",$listview,"GetItemCount")
For $i = 0 To $ItemCount - 1
   If ControlListView("listview items","",$listview,"IsSelected",$i) Then 
   GuiCtrlSendMsg($listview, $LVM_DELETEITEM,$i,0)
   $i = $i - 1
EndIf
Next

But still can't figure out how to hide a column

Any help appreciated.

Link to comment
Share on other sites

! You can NOT hide a column but only DELETE it !!!

$LVM_DELETECOLUMN = 0x101C
...
$col = 3
GUICtrlSendMsg($listview,$LVM_DELETECOLUMN,$col,0)

So long...

Edit: if you are looking for the values for the commands try searching via google for "winuser.h" or "commctrl.h".

Edited by Holger
Link to comment
Share on other sites

  • Developers

! You can NOT hide a column but only DELETE it !!!

$LVM_DELETECOLUMN = 0x1028
...
$col = 3
GUICtrlSendMsg($listview,$LVM_DELETECOLUMN,$col,0)

So long...

Edit: if you are looking for the values for the commands try searching via google for "winuser.h" or "commctrl.h".

<{POST_SNAPBACK}>

would setting the columnwidth to 0 do it ?

(LVM_SETCOLUMNWIDTH)

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

@JdeB: oohhh, sorry...yep, great idea :lol::D

Thanks for info :idiot:

Forgot:

$LVM_SETCOLUMNWIDTH = 0x101E
...
$col = 3
GUICtrlSendMsg($listview,$LVM_SETCOLUMNWIDTH,$col,0)
Edited by Holger
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...