Treeview StartLabelEdit

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?cGhvbmw=?=

    Treeview StartLabelEdit

    VB6 has StartLabelEdit

    What is the equivalent in the vb.net 2008 Treeview or how can I start the
    label edit?

  • Zhi-Xin Ye [MSFT]

    #2
    RE: Treeview StartLabelEdit

    Hi,

    You can call the BeginEdit() method on the TreeNode to start the label
    editing, for example:

    Private Sub Button1_Click(B yVal sender As System.Object, ByVal e As
    System.EventArg s) Handles Button1.Click
    Me.TreeView1.La belEdit = True
    Me.TreeView1.Se lectedNode.Begi nEdit()
    End Sub

    Sincerely,
    Zhi-Xin Ye
    Microsoft Managed Newsgroup Support Team

    Delighting our customers is our #1 priority. We welcome your comments and
    suggestions about how we can improve the support we provide to you. Please
    feel free to let my manager know what you think of the level of service
    provided. You can send feedback directly to my manager at:
    msdnmg@microsof t.com.

    =============== =============== =============== =====
    Get notification to my posts through email? Please refer to
    http://msdn.microsoft.com/en-us/subs...#notifications.

    Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
    where an initial response from the community or a Microsoft Support
    Engineer within 1 business day is acceptable. Please note that each follow
    up response may take approximately 2 business days as the support
    professional working with you may need further investigation to reach the
    most efficient resolution. The offering is not appropriate for situations
    that require urgent, real-time or phone-based interactions or complex
    project analysis and dump analysis issues. Issues of this nature are best
    handled working with a dedicated Microsoft Support Engineer by contacting
    Microsoft Customer Support Services (CSS) at
    http://support.microsoft.com/select/...tance&ln=en-us.
    =============== =============== =============== =====
    This posting is provided "AS IS" with no warranties, and confers no rights.

    Comment

    • Zhi-Xin Ye [MSFT]

      #3
      RE: Treeview StartLabelEdit

      Dear phonl,

      How about this issue now? If you still need any help or have any concern,
      please feel free to feedback, thanks.

      Sincerely,
      Zhi-Xin Ye
      Microsoft Managed Newsgroup Support Team

      Delighting our customers is our #1 priority. We welcome your comments and
      suggestions about how we can improve the support we provide to you. Please
      feel free to let my manager know what you think of the level of service
      provided. You can send feedback directly to my manager at:
      msdnmg@microsof t.com.

      This posting is provided "AS IS" with no warranties, and confers no rights.

      Comment

      • phonl

        #4
        Re: Treeview StartLabelEdit

        Thank you for your help. It solved the problem I was having.


        "Zhi-Xin Ye [MSFT]" <v-zhye@online.mic rosoft.comwrote in message
        news:9xy5kDVGJH A.1656@TK2MSFTN GHUB02.phx.gbl. ..
        Hi,
        >
        You can call the BeginEdit() method on the TreeNode to start the label
        editing, for example:
        >
        Private Sub Button1_Click(B yVal sender As System.Object, ByVal e As
        System.EventArg s) Handles Button1.Click
        Me.TreeView1.La belEdit = True
        Me.TreeView1.Se lectedNode.Begi nEdit()
        End Sub
        >
        Sincerely,
        Zhi-Xin Ye
        Microsoft Managed Newsgroup Support Team
        >
        Delighting our customers is our #1 priority. We welcome your comments and
        suggestions about how we can improve the support we provide to you. Please
        feel free to let my manager know what you think of the level of service
        provided. You can send feedback directly to my manager at:
        msdnmg@microsof t.com.
        >
        =============== =============== =============== =====
        Get notification to my posts through email? Please refer to
        http://msdn.microsoft.com/en-us/subs...#notifications.
        >
        Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
        where an initial response from the community or a Microsoft Support
        Engineer within 1 business day is acceptable. Please note that each follow
        up response may take approximately 2 business days as the support
        professional working with you may need further investigation to reach the
        most efficient resolution. The offering is not appropriate for situations
        that require urgent, real-time or phone-based interactions or complex
        project analysis and dump analysis issues. Issues of this nature are best
        handled working with a dedicated Microsoft Support Engineer by contacting
        Microsoft Customer Support Services (CSS) at
        http://support.microsoft.com/select/...tance&ln=en-us.
        =============== =============== =============== =====
        This posting is provided "AS IS" with no warranties, and confers no
        rights.
        >

        Comment

        • =?Utf-8?B?cGhvbmw=?=

          #5
          RE: Treeview StartLabelEdit

          Thank you for your help. It solved the problem I was having.


          "Zhi-Xin Ye [MSFT]" wrote:
          Hi,
          >
          You can call the BeginEdit() method on the TreeNode to start the label
          editing, for example:
          >
          Private Sub Button1_Click(B yVal sender As System.Object, ByVal e As
          System.EventArg s) Handles Button1.Click
          Me.TreeView1.La belEdit = True
          Me.TreeView1.Se lectedNode.Begi nEdit()
          End Sub
          >
          Sincerely,
          Zhi-Xin Ye
          Microsoft Managed Newsgroup Support Team
          >
          Delighting our customers is our #1 priority. We welcome your comments and
          suggestions about how we can improve the support we provide to you. Please
          feel free to let my manager know what you think of the level of service
          provided. You can send feedback directly to my manager at:
          msdnmg@microsof t.com.
          >
          =============== =============== =============== =====
          Get notification to my posts through email? Please refer to
          http://msdn.microsoft.com/en-us/subs...#notifications.
          >
          Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
          where an initial response from the community or a Microsoft Support
          Engineer within 1 business day is acceptable. Please note that each follow
          up response may take approximately 2 business days as the support
          professional working with you may need further investigation to reach the
          most efficient resolution. The offering is not appropriate for situations
          that require urgent, real-time or phone-based interactions or complex
          project analysis and dump analysis issues. Issues of this nature are best
          handled working with a dedicated Microsoft Support Engineer by contacting
          Microsoft Customer Support Services (CSS) at
          http://support.microsoft.com/select/...tance&ln=en-us.
          =============== =============== =============== =====
          This posting is provided "AS IS" with no warranties, and confers no rights.
          >
          >

          Comment

          Working...