devxlogo

CompactPathToControl – Shorten a path by using ellipses

 Shared Function _    GetWindowDC(ByVal hWnd As Integer) As IntegerEnd Function Shared Function _    PathCompactPath(ByVal hDC As Integer, _    ByVal pathBuffer As System.Text.StringBuilder, _    ByVal dx As Integer) As BooleanEnd Function' Shorten a path by using ellipses, if necessary, so that it fits inside a ' window' If maxWidth=-1 or omitted, it uses the entire window's width'' Example:'   Dim longPath As String = "D:VB2TheMaxExamplesRoutinesFile1.vb"'   Label1.Text = CompactPathToControl(longPath, Label1)Function CompactPathToControl(ByVal longPath As String, ByVal ctl As Control, _    Optional ByVal maxWidth As Long = -1) As String    ' if 3rd argument is omitted, use the control's width    If maxWidth < 0 Then maxWidth = ctl.Width    ' compact the path    Dim compPath As New System.Text.StringBuilder(longPath)    PathCompactPath(GetWindowDC(ctl.Handle.ToInt32()), compPath, maxWidth)    ' get the path by extracting it from the returned buffer    Return compPath.ToString()End Function

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Seven Service Boundary Mistakes That Create Technical Debt

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.