View Full Version : FindNodeByText NoCase
How to search for text in the object Tree ignoring the character case? :huh
based like this?
-- Search for the text
NodeFound = Tree.FindNodeByText("Tree1", "Some Item");
-- check if there was a result
if NodeFound == "" then
-- The node was not found
else
Tree.SetSelectedNode("Tree1", NodeFound);
end
based like this?
-- Search for the text
NodeFound = Tree.FindNodeByText("Tree1", "Some Item");
-- check if there was a result
if NodeFound == "" then
-- The node was not found
else
Tree.SetSelectedNode("Tree1", NodeFound);
end
No. I need a text search not case-sensitive characters. A Tree.FindNodeByText searches case sensitive.
vBulletin® v3.8.4, Copyright ©2000-2009, Jelsoft Enterprises Ltd.