Help | Site Map
Connecting Tech Pros Worldwide
 
 
LinkBack Thread Tools
  #1  
Old August 9th, 2006, 09:05 PM
(PeteCresswell)
Guest
 
Posts: n/a
Default How To Open Document Of Unknown Type From VBA?

I've got a UNC.

It's something like H:\CDL\Attachments\Deal000023.InitialOffering.doc.

I want to feed that UNC to MS Windows and let Windows worry about selecting
which application to use to open it. If there's no app defined for that UNC's
particular suffix, that's ok... we'll live with it.

Seems like a FileSystemObject should be able to do this, but I can't find such a
method.

'Shell' wants an executable.

Maybe an API call?
--
PeteCresswell
  #2  
Old August 9th, 2006, 09:45 PM
Lyle Fairfield
Guest
 
Posts: n/a
Default Re: How To Open Document Of Unknown Type From VBA?

"(PeteCresswell)" <x@y.Invalidwrote in
news:4agkd21p4rvsqve0jlf1hnihttb6baeqhn@4ax.com:
Quote:
I've got a UNC.
>
It's something like H:\CDL\Attachments\Deal000023.InitialOffering.doc.
>
I want to feed that UNC to MS Windows and let Windows worry about
selecting which application to use to open it. If there's no app
defined for that UNC's particular suffix, that's ok... we'll live with
it.
>
Seems like a FileSystemObject should be able to do this, but I can't
find such a method.
>
'Shell' wants an executable.
>
Maybe an API call?
FollowHyperlink "H:\CDL\Attachments\Deal000023.InitialOffering.doc "

?

--
Lyle Fairfield
  #3  
Old August 9th, 2006, 10:15 PM
Per
Guest
 
Posts: n/a
Default Re: How To Open Document Of Unknown Type From VBA?

I found this code on an other site and have tried it, it works. So
here's the complete code, including the copyright notices:
---
' This code was originally written by Dev Ashish.
' It is not to be altered or distributed,
' except as part of an application.
' You are free to use it in any application,
' provided the copyright notice is left unchanged.
'
' Code Courtesy of
' Dev Ashish
'
Private Declare Function apiShellExecute Lib "shell32.dll" _
Alias "ShellExecuteA" _
(ByVal hwnd As Long, _
ByVal lpOperation As String, _
ByVal lpFile As String, _
ByVal lpParameters As String, _
ByVal lpDirectory As String, _
ByVal nShowCmd As Long) _
As Long

'***App Window Constants***
Public Const WIN_NORMAL = 1 'Open Normal
Public Const WIN_MAX = 3 'Open Maximized
Public Const WIN_MIN = 2 'Open Minimized

'***Error Codes***
Private Const ERROR_SUCCESS = 32&
Private Const ERROR_NO_ASSOC = 31&
Private Const ERROR_OUT_OF_MEM = 0&
Private Const ERROR_FILE_NOT_FOUND = 2&
Private Const ERROR_PATH_NOT_FOUND = 3&
Private Const ERROR_BAD_FORMAT = 11&

'***************Usage Examples***********************
'Open a folder: ?fHandleFile("C:\TEMP\",WIN_NORMAL)
'Call Email app:
?fHandleFile("mailto:dash10@hotmail.com",WIN_NORMA L)
'Open URL: ?fHandleFile("http://home.att.net/~dashish",
WIN_NORMAL)
'Handle Unknown extensions (call Open With Dialog):
' ?fHandleFile("C:\TEMP\TestThis",Win_Normal)
'Start Access instance:
' ?fHandleFile("I:\mdbs\CodeNStuff.mdb", Win_NORMAL)
'************************************************* ***

Function fHandleFile(stFile As String, lShowHow As Long)
Dim lRet As Long, varTaskID As Variant
Dim stRet As String
'First try ShellExecute
lRet = apiShellExecute(hWndAccessApp, vbNullString, _
stFile, vbNullString, vbNullString, lShowHow)

If lRet ERROR_SUCCESS Then
stRet = vbNullString
lRet = -1
Else
Select Case lRet
Case ERROR_NO_ASSOC:
'Try the OpenWith dialog
varTaskID = Shell("rundll32.exe
shell32.dll,OpenAs_RunDLL " _
& stFile, WIN_NORMAL)
lRet = (varTaskID <0)
Case ERROR_OUT_OF_MEM:
stRet = "Error: Out of Memory/Resources. Couldn't
Execute!"
Case ERROR_FILE_NOT_FOUND:
stRet = "Error: File not found. Couldn't Execute!"
Case ERROR_PATH_NOT_FOUND:
stRet = "Error: Path not found. Couldn't Execute!"
Case ERROR_BAD_FORMAT:
stRet = "Error: Bad File Format. Couldn't Execute!"
Case Else:
End Select
End If
fHandleFile = lRet & _
IIf(stRet = "", vbNullString, ", " & stRet)
End Function
---

/Per
Lyle Fairfield wrote:
Quote:
"(PeteCresswell)" <x@y.Invalidwrote in
news:4agkd21p4rvsqve0jlf1hnihttb6baeqhn@4ax.com:
>
Quote:
I've got a UNC.

It's something like H:\CDL\Attachments\Deal000023.InitialOffering.doc.

I want to feed that UNC to MS Windows and let Windows worry about
selecting which application to use to open it. If there's no app
defined for that UNC's particular suffix, that's ok... we'll live with
it.

Seems like a FileSystemObject should be able to do this, but I can't
find such a method.

'Shell' wants an executable.

Maybe an API call?
>
FollowHyperlink "H:\CDL\Attachments\Deal000023.InitialOffering.doc "
>
?
>
--
Lyle Fairfield
  #4  
Old August 9th, 2006, 10:25 PM
Lyle Fairfield
Guest
 
Posts: n/a
Default Re: How To Open Document Of Unknown Type From VBA?

"Per" <panell.linea@gmail.comwrote in
news:1155158556.796731.15760@m73g2000cwd.googlegro ups.com:
Quote:
I found this code on an other site and have tried it, it works. So
here's the complete code, including the copyright notices:
---
' This code was originally written by Dev Ashish.
' It is not to be altered or distributed,
' except as part of an application.
' You are free to use it in any application,
' provided the copyright notice is left unchanged.
'
' Code Courtesy of
' Dev Ashish
'
Private Declare Function apiShellExecute Lib "shell32.dll" _
Alias "ShellExecuteA" _
(ByVal hwnd As Long, _
ByVal lpOperation As String, _
ByVal lpFile As String, _
ByVal lpParameters As String, _
ByVal lpDirectory As String, _
ByVal nShowCmd As Long) _
As Long
>
'***App Window Constants***
Public Const WIN_NORMAL = 1 'Open Normal
Public Const WIN_MAX = 3 'Open Maximized
Public Const WIN_MIN = 2 'Open Minimized
>
'***Error Codes***
Private Const ERROR_SUCCESS = 32&
Private Const ERROR_NO_ASSOC = 31&
Private Const ERROR_OUT_OF_MEM = 0&
Private Const ERROR_FILE_NOT_FOUND = 2&
Private Const ERROR_PATH_NOT_FOUND = 3&
Private Const ERROR_BAD_FORMAT = 11&
>
'***************Usage Examples***********************
'Open a folder: ?fHandleFile("C:\TEMP\",WIN_NORMAL)
'Call Email app:
?fHandleFile("mailto:dash10@hotmail.com",WIN_NORMA L)
'Open URL: ?fHandleFile("http://home.att.net/~dashish",
WIN_NORMAL)
'Handle Unknown extensions (call Open With Dialog):
' ?fHandleFile("C:\TEMP\TestThis",Win_Normal)
'Start Access instance:
' ?fHandleFile("I:\mdbs\CodeNStuff.mdb", Win_NORMAL)
'************************************************* ***
>
Function fHandleFile(stFile As String, lShowHow As Long)
Dim lRet As Long, varTaskID As Variant
Dim stRet As String
'First try ShellExecute
lRet = apiShellExecute(hWndAccessApp, vbNullString, _
stFile, vbNullString, vbNullString, lShowHow)
>
If lRet ERROR_SUCCESS Then
stRet = vbNullString
lRet = -1
Else
Select Case lRet
Case ERROR_NO_ASSOC:
'Try the OpenWith dialog
varTaskID = Shell("rundll32.exe
shell32.dll,OpenAs_RunDLL " _
& stFile, WIN_NORMAL)
lRet = (varTaskID <0)
Case ERROR_OUT_OF_MEM:
stRet = "Error: Out of Memory/Resources. Couldn't
Execute!"
Case ERROR_FILE_NOT_FOUND:
stRet = "Error: File not found. Couldn't Execute!"
Case ERROR_PATH_NOT_FOUND:
stRet = "Error: Path not found. Couldn't Execute!"
Case ERROR_BAD_FORMAT:
stRet = "Error: Bad File Format. Couldn't Execute!"
Case Else:
End Select
End If
fHandleFile = lRet & _
IIf(stRet = "", vbNullString, ", " & stRet)
End Function
---
>
/Per
Lyle Fairfield wrote:
Quote:
>"(PeteCresswell)" <x@y.Invalidwrote in
>news:4agkd21p4rvsqve0jlf1hnihttb6baeqhn@4ax.com :
>>
Quote:
I've got a UNC.
>
It's something like
H:\CDL\Attachments\Deal000023.InitialOffering.doc.
>
I want to feed that UNC to MS Windows and let Windows worry about
selecting which application to use to open it. If there's no app
defined for that UNC's particular suffix, that's ok... we'll live
with it.
>
Seems like a FileSystemObject should be able to do this, but I
can't find such a method.
>
'Shell' wants an executable.
>
Maybe an API call?
>>
>FollowHyperlink "H:\CDL\Attachments\Deal000023.InitialOffering.doc "
>>
>?
>>
>--
>Lyle Fairfield
Thanks. That certainly helps me understand those 25000 lines of code
claims.

--
Lyle Fairfield
  #5  
Old August 10th, 2006, 02:55 AM
Br@dley
Guest
 
Posts: n/a
Default Re: How To Open Document Of Unknown Type From VBA?


Lyle Fairfield wrote:
Quote:
"Per" <panell.linea@gmail.comwrote in
news:1155158556.796731.15760@m73g2000cwd.googlegro ups.com:
>
Quote:
I found this code on an other site and have tried it, it works. So
here's the complete code, including the copyright notices:
---
' This code was originally written by Dev Ashish.
' It is not to be altered or distributed,
' except as part of an application.
' You are free to use it in any application,
' provided the copyright notice is left unchanged.
'
' Code Courtesy of
' Dev Ashish
'
Private Declare Function apiShellExecute Lib "shell32.dll" _
Alias "ShellExecuteA" _
(ByVal hwnd As Long, _
ByVal lpOperation As String, _
ByVal lpFile As String, _
ByVal lpParameters As String, _
ByVal lpDirectory As String, _
ByVal nShowCmd As Long) _
As Long

'***App Window Constants***
Public Const WIN_NORMAL = 1 'Open Normal
Public Const WIN_MAX = 3 'Open Maximized
Public Const WIN_MIN = 2 'Open Minimized

'***Error Codes***
Private Const ERROR_SUCCESS = 32&
Private Const ERROR_NO_ASSOC = 31&
Private Const ERROR_OUT_OF_MEM = 0&
Private Const ERROR_FILE_NOT_FOUND = 2&
Private Const ERROR_PATH_NOT_FOUND = 3&
Private Const ERROR_BAD_FORMAT = 11&

'***************Usage Examples***********************
'Open a folder: ?fHandleFile("C:\TEMP\",WIN_NORMAL)
'Call Email app:
?fHandleFile("mailto:dash10@hotmail.com",WIN_NORMA L)
'Open URL: ?fHandleFile("http://home.att.net/~dashish",
WIN_NORMAL)
'Handle Unknown extensions (call Open With Dialog):
' ?fHandleFile("C:\TEMP\TestThis",Win_Normal)
'Start Access instance:
' ?fHandleFile("I:\mdbs\CodeNStuff.mdb", Win_NORMAL)
'************************************************* ***

Function fHandleFile(stFile As String, lShowHow As Long)
Dim lRet As Long, varTaskID As Variant
Dim stRet As String
'First try ShellExecute
lRet = apiShellExecute(hWndAccessApp, vbNullString, _
stFile, vbNullString, vbNullString, lShowHow)

If lRet ERROR_SUCCESS Then
stRet = vbNullString
lRet = -1
Else
Select Case lRet
Case ERROR_NO_ASSOC:
'Try the OpenWith dialog
varTaskID = Shell("rundll32.exe
shell32.dll,OpenAs_RunDLL " _
& stFile, WIN_NORMAL)
lRet = (varTaskID <0)
Case ERROR_OUT_OF_MEM:
stRet = "Error: Out of Memory/Resources. Couldn't
Execute!"
Case ERROR_FILE_NOT_FOUND:
stRet = "Error: File not found. Couldn't Execute!"
Case ERROR_PATH_NOT_FOUND:
stRet = "Error: Path not found. Couldn't Execute!"
Case ERROR_BAD_FORMAT:
stRet = "Error: Bad File Format. Couldn't Execute!"
Case Else:
End Select
End If
fHandleFile = lRet & _
IIf(stRet = "", vbNullString, ", " & stRet)
End Function
---

/Per
Lyle Fairfield wrote:
Quote:
"(PeteCresswell)" <x@y.Invalidwrote in
news:4agkd21p4rvsqve0jlf1hnihttb6baeqhn@4ax.com:
>
I've got a UNC.

It's something like
H:\CDL\Attachments\Deal000023.InitialOffering.doc.

I want to feed that UNC to MS Windows and let Windows worry about
selecting which application to use to open it. If there's no app
defined for that UNC's particular suffix, that's ok... we'll live
with it.

Seems like a FileSystemObject should be able to do this, but I
can't find such a method.

'Shell' wants an executable.

Maybe an API call?
>
FollowHyperlink "H:\CDL\Attachments\Deal000023.InitialOffering.doc "
>
?
>
--
Lyle Fairfield
>
Thanks. That certainly helps me understand those 25000 lines of code
claims.
>
--
Lyle Fairfield
Hehe.

I have some code (not on me right now) that will lookup the registry
and get the program associated with the filename extension. Not sure if
it'd work any better/worse than the above....

regards,

Br@dley

  #6  
Old August 10th, 2006, 11:25 AM
Terry Kreft
Guest
 
Posts: n/a
Default Re: How To Open Document Of Unknown Type From VBA?


The code quoted is the correct way to do it (in Win32 terms), it works by
looking in the registry for the file extension and then looks at the verb
(passed in lpOperation) to carry out the appropriate action for the file.

In the example below as lpOperation is set to vbNullstring this means that
it will perorm the default operation, this is generally "Open".


--

Terry Kreft


"Br@dley" <bradley@comcen.com.auwrote in message
news:1155175616.970691.15210@m73g2000cwd.googlegro ups.com...
Quote:
>
Lyle Fairfield wrote:
Quote:
"Per" <panell.linea@gmail.comwrote in
news:1155158556.796731.15760@m73g2000cwd.googlegro ups.com:
Quote:
I found this code on an other site and have tried it, it works. So
here's the complete code, including the copyright notices:
---
' This code was originally written by Dev Ashish.
' It is not to be altered or distributed,
' except as part of an application.
' You are free to use it in any application,
' provided the copyright notice is left unchanged.
'
' Code Courtesy of
' Dev Ashish
'
Private Declare Function apiShellExecute Lib "shell32.dll" _
Alias "ShellExecuteA" _
(ByVal hwnd As Long, _
ByVal lpOperation As String, _
ByVal lpFile As String, _
ByVal lpParameters As String, _
ByVal lpDirectory As String, _
ByVal nShowCmd As Long) _
As Long
>
'***App Window Constants***
Public Const WIN_NORMAL = 1 'Open Normal
Public Const WIN_MAX = 3 'Open Maximized
Public Const WIN_MIN = 2 'Open Minimized
>
'***Error Codes***
Private Const ERROR_SUCCESS = 32&
Private Const ERROR_NO_ASSOC = 31&
Private Const ERROR_OUT_OF_MEM = 0&
Private Const ERROR_FILE_NOT_FOUND = 2&
Private Const ERROR_PATH_NOT_FOUND = 3&
Private Const ERROR_BAD_FORMAT = 11&
>
'***************Usage Examples***********************
'Open a folder: ?fHandleFile("C:\TEMP\",WIN_NORMAL)
'Call Email app:
?fHandleFile("mailto:dash10@hotmail.com",WIN_NORMA L)
'Open URL: ?fHandleFile("http://home.att.net/~dashish",
WIN_NORMAL)
'Handle Unknown extensions (call Open With Dialog):
' ?fHandleFile("C:\TEMP\TestThis",Win_Normal)
'Start Access instance:
' ?fHandleFile("I:\mdbs\CodeNStuff.mdb", Win_NORMAL)
'************************************************* ***
>
Function fHandleFile(stFile As String, lShowHow As Long)
Dim lRet As Long, varTaskID As Variant
Dim stRet As String
'First try ShellExecute
lRet = apiShellExecute(hWndAccessApp, vbNullString, _
stFile, vbNullString, vbNullString, lShowHow)
>
If lRet ERROR_SUCCESS Then
stRet = vbNullString
lRet = -1
Else
Select Case lRet
Case ERROR_NO_ASSOC:
'Try the OpenWith dialog
varTaskID = Shell("rundll32.exe
shell32.dll,OpenAs_RunDLL " _
& stFile, WIN_NORMAL)
lRet = (varTaskID <0)
Case ERROR_OUT_OF_MEM:
stRet = "Error: Out of Memory/Resources. Couldn't
Execute!"
Case ERROR_FILE_NOT_FOUND:
stRet = "Error: File not found. Couldn't Execute!"
Case ERROR_PATH_NOT_FOUND:
stRet = "Error: Path not found. Couldn't Execute!"
Case ERROR_BAD_FORMAT:
stRet = "Error: Bad File Format. Couldn't Execute!"
Case Else:
End Select
End If
fHandleFile = lRet & _
IIf(stRet = "", vbNullString, ", " & stRet)
End Function
---
>
/Per
Lyle Fairfield wrote:
>"(PeteCresswell)" <x@y.Invalidwrote in
>news:4agkd21p4rvsqve0jlf1hnihttb6baeqhn@4ax.com :
>>
I've got a UNC.
>
It's something like
H:\CDL\Attachments\Deal000023.InitialOffering.doc.
>
I want to feed that UNC to MS Windows and let Windows worry about
selecting which application to use to open it. If there's no app
defined for that UNC's particular suffix, that's ok... we'll live
with it.
>
Seems like a FileSystemObject should be able to do this, but I
can't find such a method.
>
'Shell' wants an executable.
>
Maybe an API call?
>>
>FollowHyperlink "H:\CDL\Attachments\Deal000023.InitialOffering.doc "
>>
>?
>>
>--
>Lyle Fairfield
Thanks. That certainly helps me understand those 25000 lines of code
claims.

--
Lyle Fairfield
>
Hehe.
>
I have some code (not on me right now) that will lookup the registry
and get the program associated with the filename extension. Not sure if
it'd work any better/worse than the above....
>
regards,
>
Br@dley
>

  #7  
Old August 10th, 2006, 12:35 PM
Lyle Fairfield
Guest
 
Posts: n/a
Default Re: How To Open Document Of Unknown Type From VBA?


Terry Kreft wrote:
Quote:
The code quoted is the correct way to do it (in Win32 terms), it works by
looking in the registry for the file extension and then looks at the verb
(passed in lpOperation) to carry out the appropriate action for the file.
>
In the example below as lpOperation is set to vbNullstring this means that
it will perorm the default operation, this is generally "Open".
Terry

How does this differ from FollowHyperLink?
Is one less efficient?
Will one find more run operations with the one than the other?
Something else?

  #8  
Old August 10th, 2006, 02:55 PM
Terry Kreft
Guest
 
Posts: n/a
Default Re: How To Open Document Of Unknown Type From VBA?

Lyle,
I wasn't trying to say this is better than FollowHyperLink, I was trying to
make the point that ShellExecute does the looking up in the registry that
one poster said they had code for.

Answering your questions:-
I wouldn't know, but I would guess the FollowHyperLink mehod to some
extent uses ShellExecute to find the registered app.
Quite possibly but considering the use both methods are put to, this is
almost certainly irrelevant.
IIRC FollowHyperLink attempts to use IE if it can't find the registered
app, whereas if you use ShellExecute you have to build in a method of your
own to handle this.
Almost certanly.

--

Terry Kreft


"Lyle Fairfield" <lylefairfield@aim.comwrote in message
news:1155209950.875171.20000@75g2000cwc.googlegrou ps.com...
Quote:
>
Terry Kreft wrote:
Quote:
The code quoted is the correct way to do it (in Win32 terms), it works
by
Quote:
Quote:
looking in the registry for the file extension and then looks at the
verb
Quote:
Quote:
(passed in lpOperation) to carry out the appropriate action for the
file.
Quote:
Quote:

In the example below as lpOperation is set to vbNullstring this means
that
Quote:
Quote:
it will perorm the default operation, this is generally "Open".
>
Terry
>
How does this differ from FollowHyperLink?
Is one less efficient?
Will one find more run operations with the one than the other?
Something else?
>

 

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles