Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Widgetset
»
Cocoa
»
[SOLVED] ListBox out of bounds
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Internal error
by
d2010
[
Today
at 04:16:01 am]
How to draw a point on a ...
by
desconocido
[
Today
at 03:40:46 am]
Lazarus Release Candidate...
by
baldzhang
[
Today
at 03:39:53 am]
Problemas ao acessar o si...
by
Gustavo 'Gus' Carreno
[
Today
at 03:25:10 am]
Uninstall
by
DanielO
[
Today
at 01:06:20 am]
[Solved] About TIdIRC and...
by
Gustavo 'Gus' Carreno
[March 20, 2025, 11:24:42 pm]
Tcsvdataset issue
by
silvercoder70
[March 20, 2025, 11:24:26 pm]
[Solved] Hooking to `OnIS...
by
Gustavo 'Gus' Carreno
[March 20, 2025, 10:39:36 pm]
Checking for number or no...
by
Nimbus
[March 20, 2025, 09:27:51 pm]
IDE tabs and spaces, auto...
by
Martin_fr
[March 20, 2025, 09:23:30 pm]
Graphics32 installation e...
by
AndersM
[March 20, 2025, 09:12:27 pm]
How to assign value to re...
by
MarkMLl
[March 20, 2025, 08:50:09 pm]
Lazmapviewer: overlaying ...
by
MarkMLl
[March 20, 2025, 07:29:30 pm]
[maybe SOLVED] BUG in Inp...
by
zeljko
[March 20, 2025, 05:14:43 pm]
TPrintDialog disable Prop...
by
Zvoni
[March 20, 2025, 04:19:29 pm]
Zebra printer and LazRepo...
by
tito_livio
[March 20, 2025, 03:55:17 pm]
Cannot update a record us...
by
Zvoni
[March 20, 2025, 02:39:34 pm]
Move tab to other pagecon...
by
majid.ebru
[March 20, 2025, 01:15:57 pm]
How to get and use the ma...
by
Hansaplast
[March 20, 2025, 12:46:42 pm]
[Solved] DBEXPORT TFixedl...
by
Zvoni
[March 20, 2025, 10:15:53 am]
NIL vs. Assign: when to u...
by
MarkMLl
[March 20, 2025, 09:47:37 am]
Converting a Project from...
by
Zvoni
[March 20, 2025, 08:11:37 am]
Using Bresenham's line al...
by
TBMan
[March 20, 2025, 02:40:18 am]
[SOLVED] Remote access to...
by
wcage03
[March 20, 2025, 02:12:39 am]
Remote access to database...
by
wcage03
[March 20, 2025, 12:48:40 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED] ListBox out of bounds (Read 2704 times)
trev
Global Moderator
Hero Member
Posts: 2032
Former Delphi 1-7, 10.2 user
[SOLVED] ListBox out of bounds
«
on:
August 27, 2019, 08:11:41 am »
I have a listbox which is filled with items. If I clear the items, I get a "List index (-1) out of bounds" error only if an item has been selected. So I tried unsetting ItemIndex but no joy.
Code: Pascal
[Select]
[+]
[-]
picListBox
.
ClearSelection
;
picListBox
.
ItemIndex
:
=
-
1
;
ShowMessage
(
'1'
)
;
picListBox
.
Items
.
Clear
;
ShowMessage
(
'2'
)
;
Ideas?
«
Last Edit: August 28, 2019, 08:18:54 am by trev
»
Logged
skalogryz
Global Moderator
Hero Member
Posts: 2770
Re: ListBox out of bounds
«
Reply #1 on:
August 27, 2019, 07:51:59 pm »
please try r61760 (the problem seemed to be with TListBox not clearing selections)
BUT,. if it doesn't work, please provide a sample. I couldn't replicate the issue on a standalone project. (With TListBox and TButton calling for ListBox1.Clear).
«
Last Edit: August 28, 2019, 01:03:17 am by skalogryz
»
Logged
trev
Global Moderator
Hero Member
Posts: 2032
Former Delphi 1-7, 10.2 user
Re: ListBox out of bounds
«
Reply #2 on:
August 28, 2019, 03:21:16 am »
The out of bounds error has moved
Code: Pascal
[Select]
[+]
[-]
ShowMessage
(
'1'
)
;
picListBox
.
ClearSelection
;
ShowMessage
(
'ItemIndex = '
+
IntToStr
(
picListBox
.
ItemIndex
)
)
;
picListBox
.
Items
.
Clear
;
It used to occur at picListBox.Items.Clear but with r61769 it now occurs at picListBox.ClearSelection which does now clear the selection.
Error dialog attached.
I'll work on a minimal demo.
Logged
trev
Global Moderator
Hero Member
Posts: 2032
Former Delphi 1-7, 10.2 user
Re: ListBox out of bounds
«
Reply #3 on:
August 28, 2019, 04:13:16 am »
I'm having trouble replicating it in a standalone app.
In the real app if I comment out the picListBox.ClearSelection the error still occurs at picListBox.Items.Clear and if I comment that out it occurs at picListBox.Items.Assign(List).
If there is no highlighted selection, then the error does not occur.
I'll keep trying to replicate in a standalone app or resort to deconstructing the real app.
«
Last Edit: August 28, 2019, 04:15:36 am by trev
»
Logged
skalogryz
Global Moderator
Hero Member
Posts: 2770
Re: ListBox out of bounds
«
Reply #4 on:
August 28, 2019, 04:42:14 am »
I think I know what's going on.
on you ListBox you've OnSelectionChanged event.
The event is NOT fired when you do ListBox.Items.Clear on Windows.
The event IS fired when you do the same on macOS.
It's likely you're trying to access an item by .ItemIndex. which is -1 at this point. And this is how you're getting the message.
upd:
please try trunk
«
Last Edit: August 28, 2019, 04:53:16 am by skalogryz
»
Logged
trev
Global Moderator
Hero Member
Posts: 2032
Former Delphi 1-7, 10.2 user
Re: ListBox out of bounds
«
Reply #5 on:
August 28, 2019, 08:18:10 am »
Yep r61775 fixes the Out of Bounds error :-)
Thanks Dmitry.
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Widgetset
»
Cocoa
»
[SOLVED] ListBox out of bounds
TinyPortal
© 2005-2018