caramen Posted January 27, 2017 Share Posted January 27, 2017 (edited) Hello guys :). I am using a console to see error message inside it and i have a problem with the console area using GUI list view here is the code : $SuiviLabel = GUICtrlCreateLabel ("Suivi Script" ,850,10,130,20) ; ;~ $SuiviLabel2 = ;~ $SuiviLabel3 = ;~ $SuiviLabel4 = $SuiviArea = GUICtrlCreateListView("Suivi ", 810,30 , 160, 550,$LVS_REPORT) _GUICtrlListView_AddItem($SuiviArea,"1er scan en cours...") _GUICtrlListView_EnsureVisible($SuiviArea, _GUICtrlListView_GetItemCount($SuiviArea)-1) And i whould like to controle that element : (See the picture attached) to the topic I want to make that larger (item in the red circle) but even if i put a lager pixel value in the command parameters it does not work is there a way to do that ? Edited January 27, 2017 by caramen My video tutorials : ( In construction ) || My Discord : https://discord.gg/S9AnwHw How to Ask Help || UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote Spoiler Water's UDFs:Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - WikiOutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - Wiki Tutorials:ADO - Wiki Link to comment Share on other sites More sharing options...
mikell Posted January 27, 2017 Share Posted January 27, 2017 You might try _GUICtrlListView_SetColumnWidth caramen 1 Link to comment Share on other sites More sharing options...
caramen Posted January 27, 2017 Author Share Posted January 27, 2017 49 minutes ago, mikell said: You might try _GUICtrlListView_SetColumnWidth $SuiviLabel = GUICtrlCreateLabel ("Suivi Script" ,850,10,130,20) ; $SuiviArea = GUICtrlCreateListView("Suivi ", 810,30 , 160, 550,$LVS_REPORT) _GUICtrlListView_SetColumnWidth ($SuiviArea , 810 , 300 ) _GUICtrlListView_AddItem($SuiviArea,"1er scan en cours...") _GUICtrlListView_EnsureVisible($SuiviArea, _GUICtrlListView_GetItemCount($SuiviArea)-1) Not working My video tutorials : ( In construction ) || My Discord : https://discord.gg/S9AnwHw How to Ask Help || UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote Spoiler Water's UDFs:Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - WikiOutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - Wiki Tutorials:ADO - Wiki Link to comment Share on other sites More sharing options...
caramen Posted January 27, 2017 Author Share Posted January 27, 2017 $SuiviLabel = GUICtrlCreateLabel ("Suivi Script" ,850,10,130,20) ; $SuiviArea = GUICtrlCreateListView("Suivi ", 810,30 , 160, 550,$LVS_REPORT) _GUICtrlListView_SetColumnWidth ($SuiviArea , 0 ,800 ) _GUICtrlListView_AddItem($SuiviArea,"1er scan en cours...") _GUICtrlListView_EnsureVisible($SuiviArea, _GUICtrlListView_GetItemCount($SuiviArea)-1) Wking Ty My video tutorials : ( In construction ) || My Discord : https://discord.gg/S9AnwHw How to Ask Help || UIAutomation From Junkew || WebDriver From Danp2 || And Water's UDFs in the Quote Spoiler Water's UDFs:Active Directory (NEW 2018-10-19 - Version 1.4.10.0) - Download - General Help & Support - Example Scripts - WikiOutlookEX (2018-10-31 - Version 1.3.4.1) - Download - General Help & Support - Example Scripts - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - Wiki Tutorials:ADO - Wiki 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