Opening Folder with VBA and defining the window size?

jmpatrick

Active Member
Joined
Aug 17, 2016
Messages
477
Office Version
  1. 365
Platform
  1. Windows
Here's my current code:

VBA Code:
Private Sub cmdOpenFolder_Click()
Dim FolderPath As String
FolderPath = Me.SE_SubLotFolderPath.Value
Call Shell("explorer.exe " & "\\GLC-SERVER\Pulte\" & FolderPath, vbMaximizedFocus)
End Sub

I'm trying define the size of the explorer window. As it is now, the window opens to fill the screen. Most of the folder contain just a few files. Can I set the size of the window?
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Try vbNormalFocus (original size and position) or vbNormalNoFocus (most recent size and position). For the latter, make sure the last size wasn't maximized when testing. Could also check if there is an API for actually setting the size, but probably more trouble than it's worth.
 
Upvote 0
Solution
Try vbNormalFocus (original size and position) or vbNormalNoFocus (most recent size and position). For the latter, make sure the last size wasn't maximized when testing. Could also check if there is an API for actually setting the size, but probably more trouble than it's worth.

Works great. Thanks!
 
Upvote 0

Forum statistics

Threads
1,215,341
Messages
6,124,391
Members
449,155
Latest member
ravioli44

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