Browse for Path - hide or lock title

sharky12345

Well-known Member
Joined
Aug 5, 2010
Messages
3,422
Office Version
  1. 2016
Platform
  1. Windows
I'm using this to allow users to browse to a folder in order to save the file;

Code:
Function GetInstallFolder() As String
Dim fldr As FileDialog
Dim sItem As String
Dim sDesktop As String
Dim bValid As Boolean
sDesktop = Environ("USERPROFILE") & "\Desktop"
Set fldr = Application.FileDialog(msoFileDialogFolderPicker)
Do
sItem = ""
bValid = True
With fldr
.Title = "Toolbox"
.AllowMultiSelect = False
.InitialFileName = Application.DefaultFilePath
If .Show = -1 Then sItem = .SelectedItems(1)
End With
If StrComp(Left$(sItem, Len(sDesktop)), sDesktop, vbTextCompare) = 0 Then
bValid = False
Call MsgBox("You cannot save the Toolbox on your desktop - choose another folder", vbCritical, "Unable to save")
End If
Loop Until bValid
GetInstallFolder = sItem
NewInstallFrm.TextPath.Value = sItem
Set fldr = Nothing
End Function

What I'd like to do if possible is lock or hide the title field at the bottom of the browse window - what's happening at the moment is users are getting confused and are typing a name in that field in an effort to save the file as a different name, so my theory was is I can lock or hide that title field they are forced to simply select a folder to save.

Make sense?
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.

Forum statistics

Threads
1,223,903
Messages
6,175,289
Members
452,631
Latest member
a_potato

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top