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
Feature announcement: Fun...
by
PascalDragon
[
Today
at 06:24:23 pm]
Black background on objec...
by
Thaddy
[
Today
at 06:12:39 pm]
Question about RPI_HAL CP...
by
Thaddy
[
Today
at 04:52:59 pm]
Debugging libraries
by
Thaddy
[
Today
at 04:32:44 pm]
RP2040 with Picoprobe and...
by
MarkMLl
[
Today
at 01:03:07 pm]
Problem saving new projec...
by
wp
[
Today
at 12:50:46 pm]
resize Form when enable o...
by
Thaddy
[
Today
at 10:15:03 am]
Daemon application: -r/--...
by
Nimral
[
Today
at 09:05:10 am]
Simple animation with TTi...
by
Handoko
[
Today
at 05:25:48 am]
how do I use TCharacter (...
by
Weiss
[
Today
at 02:45:37 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [CLOSED] ListView vsReport Search (Read 6875 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: 370
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: 370
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