Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Miscellaneous
»
Suggestions
»
Change in TreeView (treeview.inc)
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
Forum Rules
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Review from FreePascal
by
DavidL
[
Today
at 02:23:04 pm]
How can I get names of CO...
by
TheKeeper
[
Today
at 02:01:08 pm]
Accessing VRAM memory wit...
by
Thaddy
[
Today
at 01:31:19 pm]
How to check my own certi...
by
Thaddy
[
Today
at 01:27:09 pm]
Rounding issues (only wit...
by
avk
[
Today
at 12:53:56 pm]
Fixed an RV32ec compiler ...
by
ccrause
[
Today
at 12:04:05 pm]
[SOLVED} Copying existing...
by
Davo
[
Today
at 11:59:45 am]
Network drop and firewall
by
LeP
[
Today
at 11:49:07 am]
TDWEdit
by
Ed78z
[
Today
at 09:53:10 am]
FPC Unleashed (async/awai...
by
creaothceann
[
Today
at 08:43:43 am]
Elite Arcade
by
Zvoni
[
Today
at 08:17:20 am]
Which quantized model wor...
by
LeP
[July 20, 2026, 10:34:07 pm]
PasFLTK - Binding for FLT...
by
Dibo
[July 20, 2026, 10:26:31 pm]
[Closed]Indy10 hangs the ...
by
marcov
[July 20, 2026, 03:52:59 pm]
Slow app start on M5 MacB...
by
pleumann
[July 20, 2026, 03:07:54 pm]
Lazarus components
by
threedslider
[July 20, 2026, 02:37:23 pm]
Many recent books on Laza...
by
threedslider
[July 20, 2026, 02:27:45 pm]
[Solved]Setting the CURSO...
by
jamie
[July 20, 2026, 11:33:52 am]
Lazarus for Windows on aa...
by
Thaddy
[July 20, 2026, 09:39:06 am]
FastCGI vs. CGI
by
egsuh
[July 20, 2026, 06:33:08 am]
I have made some progress...
by
onionmixer
[July 20, 2026, 12:32:08 am]
Lazarus Bugfix Release 4....
by
n7800
[July 19, 2026, 10:59:09 pm]
Can not load postgres cli...
by
martinm
[July 19, 2026, 10:17:31 pm]
Gtk3 widgetset - call for...
by
zeljko
[July 19, 2026, 08:21:54 pm]
an error occurred while c...
by
Seenkao
[July 19, 2026, 07:29:14 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Change in TreeView (treeview.inc) (Read 5761 times)
jcmontherock
Sr. Member
Posts: 361
Change in TreeView (treeview.inc)
«
on:
November 27, 2021, 12:06:11 pm »
Hello,
I suggest a little change in the function FindNodeWithText:
Change:
Code: Pascal
[Select]
[+]
[-]
function
TTreeNodes
.
FindNodeWithText
(
const
NodeText
:
string
)
:
TTreeNode
;
begin
Result
:
=
GetFirstNode
;
while
Assigned
(
Result
)
and
(
Result
.
Text
<> NodeText
)
do
Result
:
=
Result
.
GetNext
;
end
;
To:
Code: Pascal
[Select]
[+]
[-]
function
TTreeNodes
.
FindNodeWithText
(
StrtIndex
:
Integer
=
0
;
const
NodeText
:
string
)
:
TTreeNode
;
begin
Result
:
=
TreeView1
.
Items
[
StrtIndex
]
;
while
Assigned
(
Result
)
and
(
Result
.
Text
<> NodeText
)
do
Result
:
=
Result
.
GetNext
;
end
;
If you have 2 (or more) nodes with the same text with a different parent node, you cannot find the next one.
Logged
Windows 11 UTF8-64 - Lazarus 4.8-64 - FPC 3.2.2
wp
Hero Member
Posts: 13630
Re: Change in TreeView (treeview.inc)
«
Reply #1 on:
November 27, 2021, 12:49:45 pm »
Please post this in the bugtracker and mark it as feature request. The optional parameter must be at the end, though.
Logged
Martin_fr
Administrator
Hero Member
Posts: 12561
Debugger - SynEdit - and more
Re: Change in TreeView (treeview.inc)
«
Reply #2 on:
November 27, 2021, 01:12:08 pm »
Also, since it returns a TTreeNode, maybe it should take a TTreeNode as optional arg?
Code: Pascal
[Select]
[+]
[-]
function
TTreeNodes
.
FindNodeWithText
(
const
NodeText
:
string
;
ContinueAfterNode
:
TTreeNode
=
nil
)
:
TTreeNode
;
Just an idea.
Logged
Ide Tools, Code completion and more
/
IDE cool features
/
Debugger Status
AlexTP
Hero Member
Posts: 2725
Re: Change in TreeView (treeview.inc)
«
Reply #3 on:
November 27, 2021, 01:37:52 pm »
Martin, +1.
Logged
CudaText editor
-
ATSynEdit
-
More from me
jcmontherock
Sr. Member
Posts: 361
Re: Change in TreeView (treeview.inc)
«
Reply #4 on:
November 27, 2021, 03:45:45 pm »
Fine, it's more better...
Logged
Windows 11 UTF8-64 - Lazarus 4.8-64 - FPC 3.2.2
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Miscellaneous
»
Suggestions
»
Change in TreeView (treeview.inc)
TinyPortal
© 2005-2018