abberration Posted February 1, 2013 Posted February 1, 2013 (edited) Hi, all. I have 2 listviews with 2 columns each. One listview has shorter words, so there is no horizonal scrollbar. But the 2nd listview has longer words, so a horizontal scrollbar is inserted. The help file says the last column adjusts itself to fit the text. I do not want that. I would rather the text be cut off like it is in column 1. Does anyone know of any tricks to force the last column to be a specified size? Alternatively, is there a way to keep the vertical scrollbars, but disable the horizontal? Thanks! Edited February 1, 2013 by abberration Easy MP3 | Software Installer | Password Manager
BrewManNH Posted February 1, 2013 Posted February 1, 2013 I'm guessing you didn't actually try this did you? Because _GUICtrlListView_SetColumnWidth will adjust any column to any width you specify. 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 GudeHow 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
abberration Posted February 1, 2013 Author Posted February 1, 2013 I'm guessing you didn't actually try this did you?Because _GUICtrlListView_SetColumnWidth will adjust any column to any width you specify.Yes, I did try it. And it did not set the last column width smaller than the longest word.I don't think there will be a workaround. I've tried a lot of things. I am simply making my GUI larger and the listviews larger as well.Thanks for trying to help, BrewManNH! Easy MP3 | Software Installer | Password Manager
BrewManNH Posted February 1, 2013 Posted February 1, 2013 GUICtrlListView_SetColumnWidth($hListView, 3, 1) will set the 4th column of a 4 column listview to 1 pixel wide. The listview itself doesn't change size but the 4th column does. 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 GudeHow 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
abberration Posted February 1, 2013 Author Posted February 1, 2013 (edited) What you suggested is one of the things that I tried. That doesn't work, either. Example: #include <GUIConstantsEx.au3> #include <ListViewConstants.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #include <GuiListView.au3> $Form1 = GUICreate("Form1", 633, 447, 193, 125) $ListView1 = GUICtrlCreateListView("From|To||", 136, 72, 170, 150, BitOR($LVS_REPORT,$LVS_SINGLESEL,$LVS_SHOWSELALWAYS,$WS_VSCROLL)) _GUICtrlListView_SetColumnWidth($ListView1, 0, 60) _GUICtrlListView_SetColumnWidth($ListView1, 1, 60) _GUICtrlListView_SetColumnWidth($ListView1, 2, 1) _GUICtrlListView_SetColumnWidth($ListView1, 3, 1) GUICtrlCreateListViewItem("60 wide|not 60 wide", $ListView1) GUICtrlCreateListViewItem("ajweighweirjniwerjgvb|ejfgbioerewfghaerherherhiojgbeio", $ListView1) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Edited February 1, 2013 by abberration Easy MP3 | Software Installer | Password Manager
BrewManNH Posted February 1, 2013 Posted February 1, 2013 #include <GUIConstantsEx.au3> #include <ListViewConstants.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #include <GuiListView.au3> $Form1 = GUICreate("Form1", 633, 447, 193, 125) $ListView1 = GUICtrlCreateListView("From|To||", 136, 72, 170, 150, BitOR($LVS_REPORT,$LVS_SINGLESEL,$LVS_SHOWSELALWAYS,$WS_VSCROLL)) GUICtrlCreateListViewItem("60 wide|not 60 wide||", $ListView1) GUICtrlCreateListViewItem("1234567890|1234567890", $ListView1) _GUICtrlListView_SetColumnWidth($ListView1, 0, 60) _GUICtrlListView_SetColumnWidth($ListView1, 1, 60) _GUICtrlListView_SetColumnWidth($ListView1, 2, 1) _GUICtrlListView_SetColumnWidth($ListView1, 3, 1) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd This should do what you're looking for. Try setting the width after you've filled the listview. abberration 1 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 GudeHow 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
abberration Posted February 3, 2013 Author Posted February 3, 2013 Wow, BrewManNH! Your method worked. I tried something similar before, but my attempt didn't work. But your example works, so I will go with your working method. Thanks for all your help. Much appreciated! Easy MP3 | Software Installer | Password Manager
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