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
Forum Rules
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
If FileExists(
by
Xenno
[
Today
at 07:16:00 am]
TDWEdit
by
Ed78z
[
Today
at 06:38:28 am]
Lazarus Bugfix Release 4....
by
jamie
[
Today
at 03:51:07 am]
Interesting video
by
Joanna
[
Today
at 01:53:09 am]
Death of the Power User
by
wp
[
Today
at 01:29:18 am]
IndySecOpenSSL is now ava...
by
TheMouseAUS
[
Today
at 01:02:40 am]
Implementing an Elo ratin...
by
n7800
[
Today
at 12:44:10 am]
how to add a ForEach call...
by
mas steindorff
[June 11, 2026, 11:42:24 pm]
How to define a type of ...
by
PascalDragon
[June 11, 2026, 09:24:45 pm]
Gitlab site history date.
by
Martin_fr
[June 11, 2026, 08:46:17 pm]
Arkanoid
by
lazarusprogrammer
[June 11, 2026, 08:14:21 pm]
[New Component] ExtTabCtr...
by
d7_2_laz
[June 11, 2026, 05:01:49 pm]
Conscious Artificial Inte...
by
schuler
[June 11, 2026, 04:39:11 pm]
Pdf Viewer in Pascal
by
Tomxe
[June 11, 2026, 03:52:37 pm]
Eye Candy TESCheme
by
Dzandaa
[June 11, 2026, 11:51:52 am]
P.I.S.S. a PlugIn-framewo...
by
cdbc
[June 11, 2026, 11:35:42 am]
I found an actual use for...
by
marcov
[June 11, 2026, 11:35:23 am]
Who can explain this ?
by
J-G
[June 11, 2026, 11:30:42 am]
XLibre, finally and fortu...
by
Fred vS
[June 11, 2026, 06:20:26 am]
WEBP, no DLLs
by
Tomxe
[June 11, 2026, 04:04:37 am]
Discipline your AI coding...
by
440bx
[June 11, 2026, 02:44:06 am]
Version 4.8 was recently ...
by
Ten_Mile_Hike
[June 11, 2026, 01:43:17 am]
FPC Unleashed (inline var...
by
Fibonacci
[June 11, 2026, 12:03:13 am]
Trayslate 1.3.1 - Free tr...
by
AlexanderT
[June 10, 2026, 08:12:24 pm]
TShellListView
by
Ed78z
[June 10, 2026, 07:59:41 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED] ListBox out of bounds (Read 3304 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