Search results for query: *

  1. S

    Attempted to perform an unauthorized operation - Error message on Delete a File

    Attempted to perform an unauthorized operation. - Error is showing on delete a File in Windows Vista OS. The following code is used with windows Application - Dim fInfo As New FileInfo("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\My Application.lnk") Dim objSecId As...
  2. S

    TreeView Scroll Position Get and Set

    Thanks a lot. The bug is fixed.
  3. S

    TreeView Scroll Position Get and Set

    Thank you for your suggestion. The Code looks like follow : Dim node as TreeNode Dim TreeView As TreeViewData node=treeview1.Nodes(1) TreeView = New TreeViewData(treeview1) treeview1.Nodes.Clear 'in a loop I regenerate the nodes and sub nodes again and attach it to the Treeview Dim nd as...
  4. S

    TreeView Scroll Position Get and Set

    I used a treeview with scrollable property true. Firstly I generated the treeview. Then I selected a treenode as : dim node as TreeNode node=treeview1.Nodes(1) After that I refresh the treeview in a structured way, like Expanded node as expanded and Collapsed as collapsed. Then I need to keep...
Back
Top