Search results for query: *

  1. Jalkhov

    Question Omit Parent Node in Treeview

    I have managed to solve it by scrutinizing the code, the truth I must say thank you, however I must also say that if you had not added that bit of arrogance the advice would have been wonderful, yes, you are an experienced programmer and methodology, but not why you should treat those who are...
  2. Jalkhov

    Question Omit Parent Node in Treeview

    I have the following code private void ListDirectory(TreeView treeView, string path) { treeView.Nodes.Clear(); var rootDirectoryInfo = new DirectoryInfo(path); treeView.Nodes.Add(CreateDirectoryNode(rootDirectoryInfo)); } private static TreeNode CreateDirectoryNode(DirectoryInfo...
  3. Jalkhov

    Process() - The system cannot find the specified file

    Hi, I'm trying to compress a folder with RAR through a button, when I press it for the first time, everything runs correctly, but when I try to do it a second time I get the title error, I think the problem is with the process but I don't know exactly how to fix it. This is my code...
Back
Top Bottom