Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
VB VB (1648)
VB.net VB.net (736)
C# C# (15)
ASP.net ASP.net (779)
ASP ASP (41)
VC++ VC++ (25)
PHP PHP (0)
JAVA JAVA (4)
JScript JScript (5)
  Database
» SQL Server (708)
» ORACLE (5)
» MySQL (0)
» DB2 (0)
Automation
» C/C++/ASM (11)
» Microcontroller (1)
» Circuit Design (0)
OS/Networking
» Networking (5)
» Unix/Linux (1)
» WinNT/2k/2003 (8)
Graphics
» Flash (0)
» Maya (0)
» 3D max (0)
» Photoshop (0)
Links
» ASP.net (2)
» PC Interfacing (1)
» Networking (4)
» SQL Server (4)
» VB (23)
» VB.net (4)
» VC (3)
» HTML/CSS/JavaScript (10)
Tools
» Regular Expr Tester
» Free Tools

 

GetNodeNestingLevel - Returns the nesting level of a TreeView's Node object
Total Hit (1888) «Code LangId=2» ' Returns the nesting level of a TreeView's Node object ' (returns zero for root nodes) Function GetNodeNestingLevel(ByVal node As TreeNode) As Integer Do Until (node.Parent Is Nothing) GetNodeNestingLevel += 1 node = node.Parent Loop End Function ....Read More
Rating
CountCheckedNodes - Retrieving the number of checked nodes in a treeview
Total Hit (1822) «Code LangId=2» ' Return the number of checked nodes in the specified tree Public Function CountCheckedNodes(ByVal rootNode As TreeNode) As Integer Dim count As Integer = 0 ' count the root node, if checked If rootNode.Checked Then count = 1 ' check the child nodes, by recursiv ....Read More
Rating
EnsureNodeIsVisible - Select a TreeView node and ensure it is visible
Total Hit (1933) «Code LangId=2» ' select a treevide node and ensure it is visible ' by expanding all its parent nodes and bringing the node ' in the visible portion of the control Sub EnsureNodeIsVisible(ByVal node As TreeNode) Dim tvw As TreeView = node.TreeView tvw.SelectedNode = node ' expan ....Read More
Rating
GetNodeRelationship - Evaluates the relationship between two treeview's nodes
Total Hit (2118)
Rating
This is a link to a different site Displaying the directory tree using the TreeView control in VB.NET
Total Hit (1833) This project was created using the .Net Beta 2 Release. It was originally written in VB6 and then rewritten in VB.Net. It teaches how to browse the directory structure and display it using the TreeView control. I make a point of highlighting differences between the VB6 and the VB.Net solutions. Some ....Read More
Rating


Recommanded Links

 

Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.