Here's my current code:
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?
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?