devxlogo

CompactPathToControl – Shorten a path by using ellipses

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

See also  Why ChatGPT Is So Important Today
devxblackblue

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.

About Our Journalist