Hey Bruno,
I have an ADVTreeView connected to an ADVDropBox using a CloudAdvTreeViewAdapter. Everything works fine until I delete ALL files from a directory. Returning to this directory in the Tree, where all files were deleted, should show an empty directory but instead shows all deleted files as well as any new files added since deletion. The files are like 'ghosts' in that they return, in the tree, after being deleted. Files are successfully deleted from the Cloud.
I have tried:
TreeView1.RemoveNode(TreeView1.SelectedNodes[i]);
TreeView1.SelectedNodes[i].DataPointer := nil;
TreeView1.SelectedNodes[i].Free;
CloudTreeViewAdapter1.FreeOnRelease
Thanks in Advance...