Prevent saving to Desktop

sharky12345

Well-known Member
Joined
Aug 5, 2010
Messages
3,404
Office Version
  1. 2016
Platform
  1. Windows
I'm using this to browse to a folder to save the current workbook;

Code:
Function GetInstallFolder() As String
Dim fldr As FileDialog
Dim sItem As String
Set fldr = Application.FileDialog(msoFileDialogFolderPicker)
With fldr
.Title = "Toolbox"
.AllowMultiSelect = False
.InitialFileName = Application.DefaultFilePath
If .Show <> -1 Then GoTo NextCode
sItem = .SelectedItems(1)
End With
NextCode:
GetInstallFolder = sItem
NewInstallFrm.TextPath.Value = sItem
Set fldr = Nothing
End Function

Is there a way I can prevent the user from choosing to save on their desktop?
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Try this:

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
        MsgBox "Not allowed to save on the desktop", vbExclamation + vbOKOnly
    End If
Loop Until bValid

GetInstallFolder = sItem
NewInstallFrm.TextPath.Value = sItem
Set fldr = Nothing

End Function

WBD
 
Upvote 0

Forum statistics

Threads
1,214,968
Messages
6,122,506
Members
449,089
Latest member
RandomExceller01

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