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
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]
installation warning
by
trev
[
Today
at 12:12:22 am]
Raylib4.0 don't work eith...
by
dsiders
[May 22, 2022, 11:51:22 pm]
Frame reception problem i...
by
avra
[May 22, 2022, 11:32:45 pm]
HTML to text
by
wp
[May 22, 2022, 11:00:03 pm]
Lazarus Release 2.2.2
by
folkeu08
[May 22, 2022, 09:31:08 pm]
Vector graphics floodfill...
by
BobDog
[May 22, 2022, 08:51:45 pm]
Regex conversion escapes
by
AlexTP
[May 22, 2022, 08:19:24 pm]
binding DOM elements in D...
by
nomorelogic
[May 22, 2022, 07:04:18 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [CLOSED] ListView vsReport Search (Read 6866 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