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
Lazarus Release 2.2.2
by
JuhaManninen
[
Today
at 10:04:05 am]
Read JSON names
by
SymbolicFrank
[
Today
at 09:57:39 am]
Frame reception problem i...
by
ccrause
[
Today
at 07:49:34 am]
Raylib4.0 don't work eith...
by
lestroso
[
Today
at 07:32:11 am]
installation warning
by
trev
[
Today
at 03:54:49 am]
Help needed for usage of ...
by
william
[
Today
at 03:33:06 am]
Open Application with sta...
by
speter
[
Today
at 02:40:23 am]
MOVED: Frame reception pr...
by
trev
[
Today
at 01:23:12 am]
MOVED: Regex conversion e...
by
trev
[
Today
at 01:20:23 am]
MOVED: Raylib4.0 don't wo...
by
trev
[
Today
at 01:19:51 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [CLOSED] ListView vsReport Search (Read 6869 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