I've run into a problem where adding items to a listbox is much slower when using a manifest file to improve the look of my GUI. For example:
Adding 4300 items
Without manifest: 8 seconds
With manifest: 45 seconds!
I'm wondering if this somehthing that can be improved by tweaking MaxGUI or maybe the manifest file (I know nothing about them)? Is this possibly a bug in MaxGUI? This will demonstrate the problem if you want to try it:
Any help or thoughts on this would be appreciated!
Adding 4300 items
Without manifest: 8 seconds
With manifest: 45 seconds!
I'm wondering if this somehthing that can be improved by tweaking MaxGUI or maybe the manifest file (I know nothing about them)? Is this possibly a bug in MaxGUI? This will demonstrate the problem if you want to try it:
SuperStrict Local win1:TGadget=CreateWindow("AddGadgetItem Test", 0, 0, 300, 300) Local lbx1:TGadget=CreateListBox(0, 0, ClientWidth(win1), ClientHeight(win1), win1) Local timer:Int=MilliSecs() For Local i:Int=0 Until 4300 AddGadgetItem(lbx1, "8s6f987s6f987sa6d97d9sd6s6fsad96f9s987d6as9s876f9f8a7s") Next Print "Time: "+(MilliSecs()-timer) End
Any help or thoughts on this would be appreciated!