1. How do I change the control's background color
Visual FoxPro
with thisform.ExFolderView1
	.BackColor = 255
endwith
2. How do I change the control's foreground color
Visual FoxPro
with thisform.ExFolderView1
	.ForeColor = 255
endwith
3. How do I remove the control's border
Visual FoxPro
with thisform.ExFolderView1
	.Appearance = 0
endwith
4. How do I remove the lines between items
Visual FoxPro
with thisform.ExFolderView1
	.HasLines = .F.
endwith
5. How do I remove the buttons to expand or collapse the folders
Visual FoxPro
with thisform.ExFolderView1
	.HasButtons = .F.
endwith
6. How do I remove the lines that link the root items
Visual FoxPro
with thisform.ExFolderView1
	.HasLinesAtRoot = .F.
endwith
7. How do I assign a checkbox for each folder/file in the control
Visual FoxPro
with thisform.ExFolderView1
	.HasCheckBoxes = .T.
endwith
8. How do I display the share name for folders and files
Visual FoxPro
with thisform.ExFolderView1
	.DisplayShareName = .T.
endwith
9. How do I display the overlay icons
Visual FoxPro
with thisform.ExFolderView1
	.OverlayIcons = .T.
endwith
10. How do I hide the overlay icons
Visual FoxPro
with thisform.ExFolderView1
	.OverlayIcons = .F.
endwith
11. How do I enable or disable the control's context menu
Visual FoxPro
with thisform.ExFolderView1
	.EnableShellMenu = .F.
endwith
12. How can I refresh the control as soon as the user renames a folder in Windows Explorer
Visual FoxPro
with thisform.ExFolderView1
	.AutoUpdate = .T.
endwith
14. How can I display the hidden folders
Visual FoxPro
with thisform.ExFolderView1
	.HiddenFolders = .T.
endwith
15. How do I get the checked folders or files
Visual FoxPro
with thisform.ExFolderView1
	.HasCheckBoxes = .T.
	.FirstVisibleFolder.Check = .T.
endwith
16. How do I select a folder
Visual FoxPro
with thisform.ExFolderView1
	.SelectedFolder = "c:\"
endwith
17. How do I select and expand a folder
Visual FoxPro
with thisform.ExFolderView1
	.SelectedFolder = "c:\"
endwith
18. How do I select and expand a folder
Visual FoxPro
with thisform.ExFolderView1
	.SelectedFolder = .SpecialFolderPath(2)
endwith
19. How do I find a special folder, like My Computer
Visual FoxPro
with thisform.ExFolderView1
	.SelectedFolder = .SpecialFolderPath(17)
endwith
20. How do I find a special folder, like My Computer
Visual FoxPro
with thisform.ExFolderView1
	.SelectedFolder = "::{20D04FE0-3AEA-1069-A2D8-08002B30309D}"
endwith
21. Is there any function or property to get the first visible folder
Visual FoxPro
with thisform.ExFolderView1
	.HasCheckBoxes = .T.
	.FirstVisibleFolder.Check = .T.
endwith
22. How do I refresh the control
Visual FoxPro
with thisform.ExFolderView1
	.Refresh
endwith
23. How can I ensure that a specified folder fits the contrl's client area
Visual FoxPro
with thisform.ExFolderView1
	.EnsureVisible(.SpecialFolderPath(11))
endwith
24. How can I expand a folder
Visual FoxPro
with thisform.ExFolderView1
	.EnsureVisible(.SpecialFolderPath(11))
endwith
25. How can I disable or enable the entire control
Visual FoxPro
with thisform.ExFolderView1
	.Enabled = .F.
endwith
26. How can I hide the icons
Visual FoxPro
with thisform.ExFolderView1
	.IconsVisible = .F.
endwith
27. Can I explore only a folder, so the user can't see the parent folder
Visual FoxPro
with thisform.ExFolderView1
	.ExploreFromHere = "c:\"
endwith
28. How can I drop files to control
Visual FoxPro
with thisform.ExFolderView1
	.AllowDropFiles = .T.
endwith
29. Can I assign partial check boxes to folders, so the sub folders get checked when the user checks the parent folder
Visual FoxPro
with thisform.ExFolderView1
	.HasCheckBoxes = .T.
	.PartialCheck = .T.
	.FirstVisibleFolder.Check = .T.
endwith
37. How can I change the shape of the cursor
Visual FoxPro
with thisform.ExFolderView1
	.MousePointer = 2
endwith
38. Can I add a rename to the control's context menu
Visual FoxPro
with thisform.ExFolderView1
	.CanRename = .T.
endwith
39. How can I change the control's font
Visual FoxPro
with thisform.ExFolderView1
	f = CreateObject("StdFont")
	with f
		.Name = "Verdana"
		.Size = 12
	endwith
	.Font = f
endwith
40. How can I include the files and folders in the control
Visual FoxPro
with thisform.ExFolderView1
	.IncludeAttributeMask = -2147483593
endwith
41. How can I specify the folders being displayed in the control
Visual FoxPro
with thisform.ExFolderView1
	.IncludeFolder = .T.
endwith
42. How do I get the name of folder, as it is displayed in the control
Visual FoxPro
with thisform.ExFolderView1
	var_DisplayName = .FirstVisibleFolder.DisplayName
endwith
43. How do I check a folder
Visual FoxPro
with thisform.ExFolderView1
	.HasCheckBoxes = .T.
	.ShellFolder("C:\").Check = .T.
endwith
44. How do I get the subfolders of specified folder
Visual FoxPro
with thisform.ExFolderView1
	var_ShellFolders = .ShellFolder("C:\").Folders
endwith
45. How can I expand a folder
Visual FoxPro
with thisform.ExFolderView1
	.ShellFolder("C:\").Expanded = .T.
endwith