faustf Posted November 4, 2011 Share Posted November 4, 2011 hi guy i have i little problem i dont understund how can transform listview in listview editable i have this code Global $List3 = GUICtrlGetHandle(GUICtrlCreateListView("", 6, 507, 481, 123, BitOR( $LVS_EDITLABELS,$LVS_REPORT, $LVS_SHOWSELALWAYS ), $WS_EX_CLIENTEDGE)) _GUICtrlListView_AddColumn($List3, "uno", 300) _GUICtrlListView_AddColumn($List3, "due", 70) _GUICtrlListView_AddColumn($List3, "tre", 75) _GUICtrlListView_AddColumn($List3, "quattro", 30) _GUICtrlListView_SetExtendedListViewStyle($List3, BitOR($LVS_EX_FULLROWSELECT, $LVS_EX_GRIDLINES, $LVS_EX_SUBITEMIMAGES)) ; questa stringa fa la griglia stile excel i had insert $LVS_EDITLABELS but not do nothing thanks Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted November 4, 2011 Moderators Share Posted November 4, 2011 faustf, Welcome to the AutoIt forum. You need to do a bit more than just add the style! This script shows you how to do it. Please ask if you have any more questions. M23 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 columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
Zedna Posted November 4, 2011 Share Posted November 4, 2011 (edited) Solution from Melba is only partial because it provides only editing of first column (listview label). There are scripts on this forum using helper edit control positioned at right place and simulating listview edit. Edited November 4, 2011 by Zedna Resources UDF ResourcesEx UDF AutoIt Forum Search Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted November 4, 2011 Moderators Share Posted November 4, 2011 Zedna,There are scripts on this forum using helper edit control positioned at right place and simulating listview editIndeed - and many of the latest versions are by me! But I thought I would start by answering the specific question and then work up to the more complex scripts given that the OP is a newcomer to the forum. M23 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 columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
Zedna Posted November 4, 2011 Share Posted November 4, 2011 Here is very good example of editing all columns in listview Resources UDF ResourcesEx UDF AutoIt Forum Search Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now