Results 1 to 5 of 5
  1. #1
    dbodell is offline Novice
    Windows XP Access 2007
    Join Date
    Aug 2011
    Posts
    2

    Need an ActiveX control for folder browse


    I need to find a good ActiveX control that can be downloaded for free that allows me to browse folders and select an object. What I am trying to do is to return the path of an object into my record. I've tried some good ones out there but they all are very expensive. Anyone have something inexpensive or free that they use?

  2. #2
    pbaldy's Avatar
    pbaldy is offline Who is John Galt?
    Windows XP Access 2007
    Join Date
    Feb 2010
    Location
    Nevada, USA
    Posts
    22,521
    Paul (wino moderator)
    MS Access MVP 2007-2019
    www.BaldyWeb.com

  3. #3
    dbodell is offline Novice
    Windows XP Access 2007
    Join Date
    Aug 2011
    Posts
    2
    Not really. I'd rather use an existing activex control than code. Thanks though.

  4. #4
    pbaldy's Avatar
    pbaldy is offline Who is John Galt?
    Windows XP Access 2007
    Join Date
    Feb 2010
    Location
    Nevada, USA
    Posts
    22,521
    Sorry, don't know then. I avoid ActiveX controls; too twitchy in multi-user environments.
    Paul (wino moderator)
    MS Access MVP 2007-2019
    www.BaldyWeb.com

  5. #5
    orange's Avatar
    orange is offline Moderator
    Windows XP Access 2003
    Join Date
    Sep 2009
    Location
    Ottawa, Ontario, Canada; West Palm Beach FL
    Posts
    16,726
    Most people would avoid the activeX control as Paul says.

    For simple file dialog you could use something like this if you don't like the mvps link.
    '// Place In A Module
    Public Function OpenFileDialog() As String
    '// Single file return
    '// Ref required:= Microsoft Office 11.0 Object Library

    Dim fd As FileDialog
    Set fd = Application.FileDialog(msoFileDialogFilePicker)

    With fd

    .Title = "Select a File"
    .Filters.Add "Text Files", "*.txt", 1
    .Filters.Add "All Files", "*.*", 2
    .AllowMultiSelect = False
    .InitialFileName = CurrentProject.Path
    If .Show = True Then
    OpenFileDialog = .InitialFileName & ".txt"
    End If
    End With

    Set fd = Nothing
    End Function

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Browse and Open Folder Based on Matching Form Field
    By Tomfernandez1 in forum Access
    Replies: 11
    Last Post: 02-26-2013, 01:04 PM
  2. Browse For Folder Example
    By pkstormy in forum Code Repository
    Replies: 6
    Last Post: 01-08-2012, 04:13 PM
  3. Replies: 1
    Last Post: 01-09-2011, 02:04 AM
  4. ActiveX Control calendar (datepicker)
    By aakann in forum Programming
    Replies: 16
    Last Post: 12-22-2010, 10:33 AM
  5. date picker activex control
    By mr2000 in forum Forms
    Replies: 1
    Last Post: 10-13-2010, 09:51 AM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums