CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: NigelTunney

Search: Search took 0.06 seconds.

  1. Re: How to set a default value of a TreeNode

    I figured it out, very simple once I saw it. . :blush:



    Public Sub world(Optional tv As TreeNode = Nothing)
    If tv Is Nothing Then
    ' code for nothing
    Else
    ...
  2. [RESOLVED] How to set a default value of a TreeNode

    VB.NET 2010, Framework 3.5

    I have a procedure where I want to have an Optional TreeNode as a parameter. The problem is that Optional parameters must have a default value and I can't figure out...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured