1. How can I change the view, so it displays large icons
Visual FoxPro 9
with thisform.ExShellView1
	.ViewMode = 1
endwith
2. How can I change the view, so it displays small icons
Visual FoxPro 9
with thisform.ExShellView1
	.ViewMode = 2
endwith
3. How can I change the view, so it displays as a list
Visual FoxPro 9
with thisform.ExShellView1
	.ViewMode = 3
endwith
4. How can I change the view, so it displays as a a grid with details
Visual FoxPro 9
with thisform.ExShellView1
	.ViewMode = 4
endwith
5. How can I change the view, so it displays as THUMBNAIL
Visual FoxPro 9
with thisform.ExShellView1
	.ViewMode = 5
endwith
6. How can I change the control's font
Visual FoxPro 9
with thisform.ExShellView1
	f = CreateObject("StdFont")
	with f
		.Name = "Verdana"
		.Size = 12
	endwith
	.Font = f
endwith
7. How do I refresh the control
Visual FoxPro 9
with thisform.ExShellView1
	.Refresh
endwith
8. How can I disable or enable the entire control
Visual FoxPro 9
with thisform.ExShellView1
	.Enabled = .F.
endwith
9. How do I browse a specified folder
Visual FoxPro 9
with thisform.ExShellView1
	.BrowseFolder = .ShellFolder("C:\")
endwith
10. How can I go up to one level, so I can browse the parent folder
Visual FoxPro 9
with thisform.ExShellView1
	.BrowseFolder = .ShellFolder("C:\")
	.UpOneLevel
endwith
11. How do I browse a special folder
Visual FoxPro 9
with thisform.ExShellView1
	.BrowseFolder = .ShellFolder(.SpecialFolder(2))
endwith
12. How do I specify what objects files or folders should be included in the list
Visual FoxPro 9
with thisform.ExShellView1
	.IncludeObjectType = 2
endwith
13. How can I list only folders in the view
Visual FoxPro 9
with thisform.ExShellView1
	.IncludeObjectType = 2
endwith
14. How can I include only files that match a pattern
Visual FoxPro 9
with thisform.ExShellView1
	.IncludeObjectType = 3
	.FilePattern = "*.bmp"
endwith
15. How can I include only files that match a pattern
Visual FoxPro 9
with thisform.ExShellView1
	.IncludeObjectType = 3
	.FilePattern = "*.exe *.lnk"
endwith
16. How can I disable or enable the control's context menu
Visual FoxPro 9
with thisform.ExShellView1
	.DefaultMenuItems = .F.
endwith
19. How can I select a folder
Visual FoxPro 9
with thisform.ExShellView1
	.Objects.Get(2).Item(0).SelectItem(1)
endwith