Jump to content

ListView items limited!?


Recommended Posts

Why example create just 4000+ items?

I need read base over 6000 strings...

#include <GuiConstants.au3>
#include <GuiListView.au3>

GUICreate("ListView 6000 items",300,300)
$listview = GUICtrlCreateListView("№|col2|col3",5,5,290,290)
GUISetState(@SW_SHOW)
For $i=1 to 6000
    GUICtrlCreateListViewItem($i&"|-|-",$listview)
Next

While 1
    $msg = GUIGetMsg()
    Select
        Case $msg = $GUI_EVENT_CLOSE 
            ExitLoop
    EndSelect
WEnd
Exit
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...