|
|
|
Click here to copy the following block | Private Type RECT Left As Long Top As Long Right As Long Bottom As Long End Type Private Declare Function IsWindow Lib "user32" (ByVal hWnd As Long) As Long Private Declare Function GetClientRect Lib "user32" (ByVal hWnd As Long, _ lpRect As RECT) As Long Private Declare Function GetWindowDC Lib "user32" (ByVal hWnd As Long) As Long Private Declare Function PathCompactPath Lib "shlwapi.dll" Alias _ "PathCompactPathA" (ByVal hDC As Long, ByVal lpszPath As String, _ ByVal dx As Long) As Boolean
Function CompactPathToWindow(ByVal sPath As String, ByVal hWnd As Long, _ Optional ByVal maxWidth As Long = -1) As String Dim rc As RECT If IsWindow(hWnd) = 0 Then Err.Raise 5 If maxWidth < 0 Then GetClientRect hWnd, rc maxWidth = rc.Right - rc.Left End If PathCompactPath GetWindowDC(hWnd), sPath, maxWidth CompactPathToWindow = Left$(sPath, InStr(sPath & vbNullChar, _ vbNullChar) - 1) End Function |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
|
|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|