Skip to main content
Email Password   helpLost your password?
Sample Image - FileBrowse.gif

Introduction

Here is an example of how you can build a common file browser in an Office application. I won't explain all about the Windows API functions used because it would be too much for this article. I made this for Excel, but you can use it with all VBA-aware applications. When you open the Excel file and look at the whole project in the VBViewer (ALT+F11), you will see that the main work is done by the Module called FileBrowser. You can export it and import it to another project.

Explanations of the Code

Declare Function th_apiGetOpenFileName Lib "comdlg32.dll" 
    Alias "GetOpenFileNameA" (OFN As thOPENFILENAME) As Boolean
Declare Function th_apiGetSaveFileName Lib "comdlg32.dll" 
    Alias "GetSaveFileNameA" (OFN As thOPENFILENAME) As Boolean
Declare Function CommDlgExtendetError Lib "commdlg32.dll" () As Long

The functions of GetOpenFileName are the secret to building this interface. For detailed information about these functions, please read an API guide. Note: OFN is the Container that allows you to browse files.

Function StartIt()
    Dim strFilter As String
    Dim lngFlags As Long
    strFilter = thAddFilterItem(strFilter, "Excel Files (*.xls)", "*.XLS")
    strFilter = thAddFilterItem(strFilter, "Text Files(*.txt)", "*.TXT")
    strFilter = thAddFilterItem(strFilter, "All Files (*.*)", "*.*")
    Startform.filenameinput.Value = thCommonFileOpenSave(InitialDir:=
        "C:\Windows", Filter:=strFilter, FilterIndex:=3, Flags:=lngFlags, 
        DialogTitle:="File Browser")
   Debug.Print Hex(lngFlags)
End Function

This is the main function. The thAddFilterItems are shown in the drop-down menu to select the different file types. If you want to add other items, e.g. Word Files (*.doc), copy and paste the line and fill in what you like. What's important is the InitialDir, which gives the path at which to start. The function thCommonFileOpenSave rules the dialog and returns as a string containing the selected file. This string is given to the textbox filenameinput of Startform. So, now you have the control to work with a file in a form chosen by the user. The function thCommonFileOpenSave looks difficult, but most of the time it is only setting properties of the OFN object.

If OpenFile Then fResult = th_apiGetOpenFileName(OFN) 
Else fResult = th_apiGetSaveFileName(OFN)
If fResult Then
    If Not IsMissing(Flags) Then Flags = OFN.Flags
        thCommonFileOpenSave = TrimNull(OFN.strFile)
    Else
        thCommonFileOpenSave = vbNullString
End If

This is the important part of the function thCommonFileOpenSave. The first line decides if you want to save or open a file, and calls the functions needed. The if-block statement defines the return value of the function. Either it returns OFN.strFile, which equals the name of the chosen file or a null string. The function TrimNull only kills Nullchars.

I hope the rest of the Module code is clear, but don't ask me about the setting of the hex-values. I found it in an API guide and I don't know what it does particularly. Also, please don't write about my bad English. I'm a student of physics and not a linguistic genius. Have fun with it.

History

You must Sign In to use this message board.
 
 
Per page   
 FirstPrevNext
GeneralMettler Toledo DLL Pin
Ernesto Herrera
9:07 9 Feb '09  
GeneralRe: Mettler Toledo DLL Pin
Hasler Thomas
23:00 10 Feb '09  
GeneralRe: Mettler Toledo DLL Pin
Torrock
15:07 25 Sep '09  
AnswerRe: Mettler Toledo DLL Pin
Hasler Thomas
23:57 27 Sep '09  
GeneralGreat post Pin
pacroman
11:45 25 Nov '08  
GeneralGreat, clear and easy to use Pin
karljohnson
14:42 7 May '08  
GeneralUse In Excel Spreadsheet Pin
RM6766
6:18 13 Jul '06  
GeneralIt Actually works in Outlook ! Pin
lucaso
14:42 27 Jan '06  
GeneralHow to customize the dialog box? Pin
Doan Phu Huyen
21:43 25 Sep '05  
GeneralOpening more than one file? Pin
macot392
13:10 7 Jun '05  
GeneralRe: Opening more than one file? Pin
Hasler Thomas
2:41 8 Jun '05  
GeneralRe: Opening more than one file? Pin
Hasler Thomas
2:58 8 Jun '05  
GeneralRe: Opening more than one file? Pin
macot392
7:26 8 Jun '05  
GeneralVSS Folder browser Pin
Antony M
4:01 19 Mar '04  
GeneralPlug-in for MS Outlook. please help Pin
Atif Bashir
19:45 30 Jul '03  
GeneralSpeed Pin
Lars Wiberg
4:57 9 Jan '03  
GeneralRe: Speed Pin
Hasler Thomas
2:14 16 Jan '03  
Generalcode in access Pin
ami
4:11 27 Jun '02  
QuestionRe: code in access Pin
themanof83
6:31 30 Sep '08  
AnswerRe: code in access Pin
Hasler Thomas
6:09 2 Oct '08  
AnswerRe: code in access Pin
Hasler Thomas
0:45 3 Oct '08  
GeneralWhat about GetOpenFilename method? Pin
Anonymous
14:38 20 Jun '02  
GeneralRe: What about GetOpenFilename method? Pin
Hasler Thomas
2:14 27 Aug '02  
QuestionRe: What about GetOpenFilename method? Pin
Larry White
10:14 14 Mar '06  
GeneralNice Code, shame that you ripped it off! Pin
Anonymous
11:33 17 Feb '02  


Last Updated 4 Oct 2008 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2009