Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
LCL
»
[CLOSED] ListView vsReport Search
Free Pascal
Website
Downloads
Wiki
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Bugtracker
CCR Bugs
IRC channel
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
NSApp.dockTile.setBadgeLa...
by
trev
[
Today
at 01:58:52 am]
LAMW - "This app has a bu...
by
Mongkey
[
Today
at 01:12:23 am]
Can't create new LAMW Pro...
by
Sirius Black
[May 16, 2022, 11:59:16 pm]
Dark mode class...
by
Wallaby
[May 16, 2022, 11:51:29 pm]
laztoapk 0.9.0.43 is avai...
by
jmpessoa
[May 16, 2022, 10:49:12 pm]
Validating user input
by
dukester
[May 16, 2022, 10:43:46 pm]
about sqldb postgresql LO...
by
Red_prig
[May 16, 2022, 09:00:58 pm]
increment filename if exi...
by
Josh
[May 16, 2022, 08:34:47 pm]
install problem in Pas2J...
by
arirod
[May 16, 2022, 07:29:33 pm]
Command line compilation ...
by
marcov
[May 16, 2022, 06:21:54 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [CLOSED] ListView vsReport Search (Read 6858 times)
Pe3s
Full Member
Posts: 145
[CLOSED] ListView vsReport Search
«
on:
December 03, 2021, 07:23:49 pm »
I wrote the code for the ListView search engine, but it does not mark the items, what do I need to correct?
Code: Pascal
[Select]
[+]
[-]
procedure
TForm1
.
BitBtn4Click
(
Sender
:
TObject
)
;
var
i
,
licznik
:
integer
;
begin
licznik
:
=
0
;
for
i
:
=
0
to
ListView1
.
Items
.
Count
-
1
do
begin
ListView1
.
Items
[
i
]
.
Selected
:
=
false
;
if
pos
(
Edit5
.
Text
,
ListView1
.
Items
[
i
]
.
Caption
)
<>
0
then
begin
ListView1
.
Items
[
i
]
.
Selected
:
=
true
;
licznik
:
=
licznik
+
1
;
end
;
end
;
if
licznik
=
0
then
showmessage
(
'Not Found'
)
;
end
;
«
Last Edit: December 04, 2021, 05:19:43 pm by Pe3s
»
Logged
Pe3s
Full Member
Posts: 145
Re: ListView vsReport Search
«
Reply #1 on:
December 04, 2021, 07:28:09 am »
Yes, Multiselect: = True;
Logged
paweld
Sr. Member
Posts: 368
Re: ListView vsReport Search
«
Reply #2 on:
December 04, 2021, 08:03:48 am »
listview by default does not show a selection unless focus is set on it.
You can either enable showing the selection:
Code: Pascal
[Select]
[+]
[-]
ListView1
.
HideSelection
:
=
False
;
or set focus on the listview after the search is complete
Code: Pascal
[Select]
[+]
[-]
if
licznik
=
0
then
ShowMessage
(
'Not Found'
)
else
ListView1
.
SetFocus
;
Logged
Best regards
paweld
Pe3s
Full Member
Posts: 145
Re: ListView vsReport Search
«
Reply #3 on:
December 04, 2021, 10:13:17 am »
Thank you, I have one more question, what do I have to change in the code to find each matching element in turn?
Logged
paweld
Sr. Member
Posts: 368
Re: ListView vsReport Search
«
Reply #4 on:
December 04, 2021, 12:11:30 pm »
Code: Pascal
[Select]
[+]
[-]
procedure
TForm1
.
BitBtn4Click
(
Sender
:
TObject
)
;
var
i
,
s
:
Integer
;
found
:
Boolean
;
begin
if
ListView1
.
Items
.
Count
=
0
then
exit
;
found
:
=
False
;
ListView1
.
MultiSelect
:
=
False
;
ListView1
.
HideSelection
:
=
False
;
s
:
=
0
;
if
Assigned
(
ListView1
.
Selected
)
then
s
:
=
ListView1
.
Selected
.
Index
;
if
s < ListView1
.
Items
.
Count
-
1
then
i
:
=
s
+
1
else
i
:
=
0
;
while
not
found
do
begin
if
pos
(
Edit5
.
Text
,
ListView1
.
Items
[
i
]
.
Caption
)
>
0
then
begin
ListView1
.
Items
[
i
]
.
Selected
:
=
True
;
found
:
=
True
;
break
;
end
else
begin
if
i
=
s
then
break
else
if
i < ListView1
.
Items
.
Count
-
1
then
Inc
(
i
)
else
i
:
=
0
;
end
;
end
;
if
not
found
then
ShowMessage
(
'Not found'
)
;
Logged
Best regards
paweld
Pe3s
Full Member
Posts: 145
Re: ListView vsReport Search
«
Reply #5 on:
December 04, 2021, 05:19:23 pm »
@paweld Thank you
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
LCL
»
[CLOSED] ListView vsReport Search
TinyPortal
© 2005-2018