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
Ant.Properties can't be f...
by
ADiV
[
Today
at 11:24:26 am]
TBCTrackBarUpDown OnMouse...
by
petevick
[
Today
at 11:10:24 am]
backconnect sock proxy ? ...
by
Thaddy
[
Today
at 11:01:17 am]
How to determine the colo...
by
MarkMLl
[
Today
at 10:58:54 am]
After upgrade to Laz 2.2....
by
Thaddy
[
Today
at 10:47:02 am]
MOVED: Ant.Properties can...
by
trev
[
Today
at 09:52:02 am]
Incorrect code in /fonten...
by
PascalDragon
[
Today
at 09:23:38 am]
Does anybody have CPU usa...
by
PascalDragon
[
Today
at 09:09:17 am]
Can't create new LAMW Pro...
by
ADiV
[
Today
at 08:52:03 am]
Get Free space of Disk or...
by
BobDog
[
Today
at 08:29:54 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [CLOSED] ListView vsReport Search (Read 6870 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: 369
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: 369
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