ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   GetOpenFilename, MS Access 2k (https://www.excelbanter.com/excel-programming/353122-getopenfilename-ms-access-2k.html)

Peter Ostermann[_3_]

GetOpenFilename, MS Access 2k
 
Hi folks,

as we all know, above mentioned fine Open dialogue
object is not available in Access, only in Excel. The pity is,
that there is no other equivalent object in Access that offers
the same comfort (aside of huge self-written VBA-procs.
for to make use of the API).

I wonder if there is any workaround. Is it possible by VBA-code
to call up from Access an Excel workbook that is "prepared"
with VBA code for to start that GetOpenFilename dialogue
to navigate through the directories, make a dataset
available for Access, and then close Excel and jumping
right back to the calling VBA-routine in Access, now having
access to the opened file?

If not, would it be possible to do likewise with an Word-mail-merge
template? Thanks in advance for any hint.

Best Regards from Germany
Peter
www.pkf-ostermann.de


NickHK

GetOpenFilename, MS Access 2k
 
Peter,
I tend to use the API even in Excel.
Whilst some lines are needed for the constants, OPENFILENAME type and
declarations, once it's wrapped it in a class you have it for all
situations.
It seems a waste to start up Excel just to use its .GetOpenFileName dialog.

Not sure what you need from Word, but automation should allow to do most
thing. e.g.
Dim MyWord As Word.Application
Set MyWord= New Word.Application
With MyWord.ActiveDocument.MailMerge
.MainDocumentType
....etc

NickHK

"Peter Ostermann" wrote in message
...
Hi folks,

as we all know, above mentioned fine Open dialogue
object is not available in Access, only in Excel. The pity is,
that there is no other equivalent object in Access that offers
the same comfort (aside of huge self-written VBA-procs.
for to make use of the API).

I wonder if there is any workaround. Is it possible by VBA-code
to call up from Access an Excel workbook that is "prepared"
with VBA code for to start that GetOpenFilename dialogue
to navigate through the directories, make a dataset
available for Access, and then close Excel and jumping
right back to the calling VBA-routine in Access, now having
access to the opened file?

If not, would it be possible to do likewise with an Word-mail-merge
template? Thanks in advance for any hint.

Best Regards from Germany
Peter
www.pkf-ostermann.de




Bob Phillips[_6_]

GetOpenFilename, MS Access 2k
 
Peter,

I tested this from Word not Access but same principle

Sub getFile()
Dim xlApp As Object
Dim sFile

Set xlApp = CreateObject("Excel.Application")
xlApp.Visible = True
sFile = xlApp.GetOpenFilename("Text Files (*.txt), *.txt")
If sFile < False Then
MsgBox "Open " & sFile
End If
xlApp.Quit
Set xlApp = Nothing

End Sub



--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Peter Ostermann" wrote in message
...
Hi folks,

as we all know, above mentioned fine Open dialogue
object is not available in Access, only in Excel. The pity is,
that there is no other equivalent object in Access that offers
the same comfort (aside of huge self-written VBA-procs.
for to make use of the API).

I wonder if there is any workaround. Is it possible by VBA-code
to call up from Access an Excel workbook that is "prepared"
with VBA code for to start that GetOpenFilename dialogue
to navigate through the directories, make a dataset
available for Access, and then close Excel and jumping
right back to the calling VBA-routine in Access, now having
access to the opened file?

If not, would it be possible to do likewise with an Word-mail-merge
template? Thanks in advance for any hint.

Best Regards from Germany
Peter
www.pkf-ostermann.de





All times are GMT +1. The time now is 02:58 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com