Jump to content

help for _GUICtrlListView_DeleteItemsSelected


faustf
 Share

Recommended Posts

hi guy i have little problem whit this command

i had created listview and insert inside whit this

_GUICtrlListView_SetItemText

i wanna remove a selected item

i try whit _GUICtrlListView_DeleteItemsSelected and remove correect but when i try insert a new item

insert only a first data in colum

why? ?

a part of the long script

insert part :

_GUICtrlListView_AddItem($listcorpofatt, $PCList)

_GUICtrlListView_SetItemText($listcorpofatt, $k, $PDList, 1)

_GUICtrlListView_SetItemText($listcorpofatt, $k, $PQList, 2)

$prezzoalpubblico = ($PPList * $PRList) + $PPList

_GUICtrlListView_SetItemText($listcorpofatt, $k, $prezzoalpubblico, 3)

$importo = ($PQList * $prezzoalpubblico)

_GUICtrlListView_SetItemText($listcorpofatt, $k, $importo, 4)

_GUICtrlListView_SetItemText($listcorpofatt, $k, $prodid, 5)

$k = $k + 1

===============================================

second part

remove part

_GUICtrlListView_DeleteItemsSelected($listcorpofatt)

Link to comment
Share on other sites

How did you create the listview? Did you use GUICtrlCreateListview or _GUICtrlListView_Create? If you used the first one, you need to get the handle of the listview using GUICtrlGetHandle($listcorpofatt) and then send that to the listview item delete routine.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

$Group3 = GUICtrlCreateGroup("Corpo Fattura", 503, 13, 561, 289)

$listcorpofatt = GUICtrlGetHandle(GUICtrlCreateListView("", 513, 38, 537, 240, BitOR($LVS_REPORT, $LVS_SHOWSELALWAYS), $WS_EX_CLIENTEDGE))

_GUICtrlListView_SetExtendedListViewStyle($listcorpofatt, BitOR($LVS_EX_FULLROWSELECT, $LVS_EX_GRIDLINES, $LVS_EX_SUBITEMIMAGES)) ; questa stringa fa la griglia stile excel

_GUICtrlListView_AddColumn($listcorpofatt, "Cod. Articolo", 70)

_GUICtrlListView_AddColumn($listcorpofatt, " Descrizione", 250)

_GUICtrlListView_AddColumn($listcorpofatt, "Quant.", 75)

_GUICtrlListView_AddColumn($listcorpofatt, "Prezzo", 70)

_GUICtrlListView_AddColumn($listcorpofatt, "Importo", 70)

_GUICtrlListView_AddColumn($listcorpofatt, "coddb produtil", 30)

_GUICtrlListView_AddColumn($listcorpofatt, "coddb prod", 30)

_GUICtrlListView_SetExtendedListViewStyle($listcorpofatt, BitOR($LVS_EX_FULLROWSELECT, $LVS_EX_GRIDLINES, $LVS_EX_SUBITEMIMAGES)) ; questa stringa fa la griglia stile excel

GUICtrlCreateGroup("", -99, -99, 1, 1)

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...