|
|
|
Click here to copy the following block | <System.Runtime.InteropServices.DllImport("shell32.dll")> Shared Function _ FindExecutable(ByVal fileName As String, ByVal fileDir As String, _ ByVal buffer As System.Text.StringBuilder) As Integer End Function
Public Function GetExecutableFile(ByVal filePath As String) As String Const ERROR_FILE_NO_ASSOCIATION = 31& Const ERROR_FILE_NOT_FOUND = 2& Const ERROR_PATH_NOT_FOUND = 3& Const ERROR_FILE_SUCCESS = 32& Dim buffer As New System.Text.StringBuilder(260)
Select Case FindExecutable(System.IO.Path.GetFileName(filePath), _ System.IO.Path.GetDirectoryName(filePath), buffer) Case ERROR_FILE_NOT_FOUND, ERROR_PATH_NOT_FOUND Throw New System.IO.FileNotFoundException() Case ERROR_FILE_NO_ASSOCIATION Return "" Case Is >= ERROR_FILE_SUCCESS Return buffer.ToString() End Select 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 ) |
|
|