Paste Windows Explorer in MS Access format

Is there a widget to insert an explorer-like view in ms access form?

I have a folder named primary key that contains documents (.doc, .xls) for this dataset (its employees table)

I currently have a button that opens an explorer window, but it will be very nice with it inline.

Any help, link, similar question, and even> no, doesn't exist

+2


source to share


1 answer


You can use the OLE Microsoft Web Browser object in the form. Because Internet Explorer is able to view files on your computer other than web pages.

Example code: WebBrowser0.Navigate2 ("C:\")

go to this folder



Edit: @hans uses either Navigate2 or an alternative systax (file //: ...).

0


source







All Articles