Jump to content

listbox too shallow want to show at least 5 lines


Recommended Posts

$Label3 = GUICtrlCreateLabel("Please Select Environment", 295, 24, 128, 36)
GUICtrlSetFont(-1, 9, 800, 0, "Verdana")
GUICtrlSetColor(-1, 0x000080)
$ENVS = GUICtrlCreateList("", 295, 56, 160, 25)
GUICtrlSetFont(-1, 8, 400, 0, "Verdana")
GUICtrlSetData($ENVS, $sStr3 )
$OK = GUICtrlCreateButton("OK", 32, 200, 75, 25, 0)
GUISetState()
 
 
see attached
 
how to enable multiple select?

post-47107-0-69918900-1406011206.jpg

Link to comment
Share on other sites

I don't think you can select more than one in lists

Anyway, what you to to have more in the list is separate the items with "|"

$GUI = GUICreate('ahaha', 500, 300)
$sStr3 = 'Stuff|otherstuff|evenmorestuff'
$Label3 = GUICtrlCreateLabel("Please Select Environment", 295, 24, 128, 36)
GUICtrlSetFont(-1, 9, 800, 0, "Verdana")
GUICtrlSetColor(-1, 0x000080)
$ENVS = GUICtrlCreateList("", 295, 56, 160, 55)
GUICtrlSetFont(-1, 8, 400, 0, "Verdana")
GUICtrlSetData($ENVS, $sStr3 )
$OK = GUICtrlCreateButton("OK", 32, 200, 75, 25, 0)
GUISetState(@SW_SHOW)
While 1
    Sleep(50)
WEnd
Spoiler

Renamer - Rename files and folders, remove portions of text from the filename etc.

GPO Tool - Export/Import Group policy settings.

MirrorDir - Synchronize/Backup/Mirror Folders

BeatsPlayer - Music player.

Params Tool - Right click an exe to see it's parameters or execute them.

String Trigger - Triggers pasting text or applications or internet links on specific strings.

Inconspicuous - Hide files in plain sight, not fully encrypted.

Regedit Control - Registry browsing history, quickly jump into any saved key.

Time4Shutdown - Write the time for shutdown in minutes.

Power Profiles Tool - Set a profile as active, delete, duplicate, export and import.

Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes.

NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s.

IUIAutomation - Topic with framework and examples

Au3Record.exe

Link to comment
Share on other sites

?

#include <ListBoxConstants.au3>

$GUI = GUICreate('ahaha', 500, 300)
$sStr3 = 'Stuff|otherstuff|evenmorestuff'
$Label3 = GUICtrlCreateLabel("Please Select Environment", 295, 24, 128, 36)
GUICtrlSetFont(-1, 9, 800, 0, "Verdana")
GUICtrlSetColor(-1, 0x000080)
$ENVS = GUICtrlCreateList("", 295, 56, 160, 55, $LBS_MULTIPLESEL)
GUICtrlSetFont(-1, 8, 400, 0, "Verdana")
GUICtrlSetData($ENVS, $sStr3 )
$OK = GUICtrlCreateButton("OK", 32, 200, 75, 25, 0)
GUISetState(@SW_SHOW)
While 1
    Sleep(50)
WEnd
Link to comment
Share on other sites

That last post is very conclusive..

Your thread title is: "listbox too shallow want to show at least 5 lines"

So i grabbed the code you posted and put in 3 lines, but explained how you add more.

You asked: "how to enable multiple select?" and i said i don't know / not sure you can.

What is the doubt?

Had to add some stuff to the code, so i could test it, as you example woudn't run by itself.

Spoiler

Renamer - Rename files and folders, remove portions of text from the filename etc.

GPO Tool - Export/Import Group policy settings.

MirrorDir - Synchronize/Backup/Mirror Folders

BeatsPlayer - Music player.

Params Tool - Right click an exe to see it's parameters or execute them.

String Trigger - Triggers pasting text or applications or internet links on specific strings.

Inconspicuous - Hide files in plain sight, not fully encrypted.

Regedit Control - Registry browsing history, quickly jump into any saved key.

Time4Shutdown - Write the time for shutdown in minutes.

Power Profiles Tool - Set a profile as active, delete, duplicate, export and import.

Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes.

NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s.

IUIAutomation - Topic with framework and examples

Au3Record.exe

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