home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Planet Source Code Jumbo …e CD Visual Basic 1 to 7
/
1_2002.ISO
/
Data
/
Zips
/
CODE_UPLOAD141141242001.psc
/
Module1.bas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
2000-01-24
|
363 b
|
13 lines
Attribute VB_Name = "Module1"
'This module gets the short path name
'of a long path name
'Ex. C:\Program Files\Script1.ccs
' becomes
' C:\Progra~1\Script1.ccs
Declare Function GetShortPathName Lib "kernel32" Alias _
"GetShortPathNameA" (ByVal lpszLongPath As String, ByVal _
lpszShortPath As String, ByVal cchBuffer As Long) As Long