GetOpenFilename, MS Access 2k

  • Thread starter Thread starter Peter Ostermann
  • Start date Start date
P

Peter Ostermann

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
 
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,

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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top