If i split the path for a single file in order to get file name and file extension i use this code;
--------------------------------------------------------------
resFind = File.Find("data", "1.txt", false, false, nil);
resSplitPath = String.SplitPath(resFind[1]);
result = ListBox.AddItem("ListBox3", resSplitPath.Filename..resSplitPath.Extension, "");
--------------------------------------------------------------
But how must be this code adapted when the search returns a table of data?
--------------------------------------------------------------
resFind = File.Find("data", "*.txt", false, false, nil);
resSplitPath = String.SplitPath(resFind[1]);
result = ListBox.AddItem("ListBox3", resSplitPath.Filename..resSplitPath.Extension, "");
--------------------------------------------------------------
Thank you
Sside

