1. How do I change the visual aspect of the drop down filter button, using EBN
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.Background(0) = 16777216
.ColumnFilterButton("Name") = .T.
endwith
|
2. How do I change the visual aspect of the close button in the filter bar, using EBN
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.Background(1) = 16777216
.ColumnFilterButton("Name") = .T.
.ColumnFilterType("Name") = 1
.ColumnFilter("Name") = "*.exe"
.ApplyFilter
endwith
|
3. Is there any option to highligth the column from the cursor - point
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .Background(32) = 16777216 endwith |
4. Is there any option to highligth the column from the cursor - point
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .Background(32) = 16777215 endwith |
5. Can I display an additional buttons in the scroll bar
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ScrollPartVisible(1,32768) = .T.
.ScrollPartVisible(1,16384) = .T.
.ScrollPartVisible(1,1) = .T.
.ScrollPartVisible(1,2) = .T.
.ColumnAutoResize = .F.
.ColumnWidth("Name") = 256
endwith
|
6. I need to add a button in the scroll bar. Is this possible
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ScrollPartVisible(1,32768) = .T.
.ScrollPartCaption(1,32768) = "1"
.ColumnAutoResize = .F.
.ColumnWidth("Name") = 256
endwith
|
7. How do I assign a tooltip to a scrollbar
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ScrollToolTip(1) = "This is a tooltip being shown when you click and drag the thumb in the vetrical scroll bar"
.ScrollPartCaption(1,256) = "This is just a text"
.ScrollFont(0).Size = 12
.ScrollWidth = 20
.ScrollThumbSize(0) = 148
.ColumnAutoResize = .F.
.ColumnWidth("Name") = 256
endwith
|
8. How do I enlarge or change the size of the control's scrollbars
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ScrollHeight = 18
.ScrollWidth = 18
.ScrollButtonWidth = 18
.ScrollButtonHeight = 18
.ColumnAutoResize = .F.
.ColumnWidth("Name") = 256
endwith
|
9. The thumb size seems to be very small. Can I make it bigger
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ScrollThumbSize(1) = 64
.ColumnAutoResize = .F.
.ColumnWidth("Name") = 256
endwith
|
10. Can I change the order of the buttons in the scroll bar
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ScrollOrderParts(1) = "t,l,r"
.ScrollOrderParts(0) = "t,l,r"
.ColumnAutoResize = .F.
.ColumnWidth("Name") = 256
endwith
|
11. How do I call your x-script language
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .Template = "BackColor = RGB(255,0,0)" endwith |
12. How do I call your x-script language
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ExecuteTemplate("BackColor = RGB(255,0,0)")
endwith
|
13. How do I enable resizing the columns at runtime
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .ColumnsAllowSizing = .T. endwith |
14. How do I change the height of the items
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .DefaultItemHeight = 13 .Refresh endwith |
15. How do I prevent painting the control while multiple changes occur
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .BeginUpdate .ForeColor = 255 .BackColor = 16777215 .EndUpdate endwith |
16. How do I change the control's background color
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .BackColor = 13158600 endwith |
17. How do I change the control's foreground color
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .ForeColor = 7895160 endwith |
18. How do I show or hide the control's header bar
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .HeaderVisible = .F. endwith |
19. How can I change the control's font
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .Font.Name = "Tahoma" endwith |
20. How do I change the colors for the selected item
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .SelBackColor = 0 endwith |
21. How do I change the visual appearance effect for the selected item, using EBN
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .SelBackColor = 16777216 .SelForeColor = 0 endwith |
22. How do I disable the control
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .Enabled = .F. endwith |
23. How can I change the header's appearance
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .HeaderAppearance = 1 endwith |
24. How can I change the visual appearance of the header, using EBN files
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .BackColorHeader = 16777216 endwith |
25. How can I change the background color of the control's header
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .BackColorHeader = 65535 .HeaderAppearance = 1 endwith |
26. How can I change the foreground color of the control's header
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .ForeColorHeader = 255 endwith |
27. How do I remove the control's border
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .Appearance = 0 endwith |
28. How do I change the control's border, using your EBN files
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .VisualAppearance.Add(1,"c:\exontrol\images\hot.ebn") .Appearance = 16777216 .BackColor = 16777215 endwith |
29. How do I put a picture on the control's background
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.Picture = thisform.ExFileView1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
endwith
|
30. How do I put a picture on the control's left top corner
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.Picture = thisform.ExFileView1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
.PictureDisplay = 0
endwith
|
31. How do I put a picture on the control's right top corner
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.Picture = thisform.ExFileView1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
.PictureDisplay = 2
endwith
|
32. How do I put a picture on the control's center top side
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.Picture = thisform.ExFileView1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
.PictureDisplay = 1
endwith
|
33. How do I put a picture on the control's center left bottom side
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.Picture = thisform.ExFileView1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
.PictureDisplay = 32
endwith
|
34. How do I put a picture on the control's center right bottom side
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.Picture = thisform.ExFileView1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
.PictureDisplay = 34
endwith
|
35. How do I resize/stretch a picture on the control's background
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.Picture = thisform.ExFileView1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
.PictureDisplay = 49
endwith
|
36. How do I put a picture on the center of the control
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.Picture = thisform.ExFileView1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
.PictureDisplay = 17
endwith
|
37. Can I add a checkbox to each file or folder
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .HasCheckBox = -1 endwith |
38. Does your control support partial check feature, so a parent item gets checked when all its child items are checked
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .HasCheckBox = 1 .ExpandFolders = .T. endwith |
39. How do I use my own icons for checkbox cells
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .HasCheckBox = 1 .ExpandFolders = .T. endwith |
40. How can I change the default icon being displayed for folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.LoadIcon(thisform.ExFileView1.ExecuteTemplate("loadpicture(`c:\exontrol\images\week.ico`)"),1234)
with .FileTypes.Add("*")
.Folder = .T.
.IconIndex = 1234
.Apply
endwith
endwith
|
41. How can I change the default icon being displayed for files
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.LoadIcon(thisform.ExFileView1.ExecuteTemplate("loadpicture(`c:\exontrol\images\week.ico`)"),1234)
with .FileTypes.Add("*")
.IconIndex = 1234
.Apply
endwith
endwith
|
42. How can I change the default icon being displayed for specified files
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.LoadIcon(thisform.ExFileView1.ExecuteTemplate("loadpicture(`c:\exontrol\images\week.ico`)"),1234)
with .FileTypes.Add("*.bat *.com *.exe")
.IconIndex = 1234
.Apply
endwith
endwith
|
43. How can I change the default icon being displayed for specified folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.LoadIcon(thisform.ExFileView1.ExecuteTemplate("loadpicture(`c:\exontrol\images\week.ico`)"),1234)
with .FileTypes.Add("W*")
.Folder = .T.
.IconIndex = 1234
.Bold = .T.
.Apply
endwith
endwith
|
44. Can I display only files
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .IncludeFolders = .F. endwith |
45. Can I change the folder being explored
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .ExploreFromHere = "c:\Program Files" endwith |
46. Can I display only *.exe and *.com files using wild characters
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .IncludeFilter = "*.exe *.com *.bat" endwith |
47. Can I display only all execpts the *.exe and *.com files using wild characters
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .ExcludeFilter = "*.exe *.com *.bat" endwith |
48. How do I enable single or multiple selection
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .SingleSel = .F. endwith |
49. How do I refresh the control
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .Refresh endwith |
50. May I disable the control's content menu, that's displayed when the user does right click
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .AllowMenuContext = .F. endwith |
51. How can I refresh automatically the control so it reflect the changes in the browsed folder
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .AutoUpdate = .T. endwith |
52. How do I change the width of the columns
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ColumnAutoResize = .F.
.ColumnWidth("Name") = 256
endwith
|
54. The Change event is not fired. What can I do
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .ChangeNotification = .T. endwith |
55. How can I get the path of the browsed folder
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .BrowseFolderPath = "c:/temp" endwith |
56. How do I show or hide a column
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ColumnVisible("Type") = .F.
endwith
|
57. How do I change the width of the columns
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ColumnWidth("Name") = 256
endwith
|
58. How do I change the width of the columns
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ColumnAutoResize = .F.
.ColumnWidth("Name") = 256
endwith
|
59. How do I enable or disable renaming the folders and files
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .AllowRename = .T. endwith |
60. How do I show or hide the first item that shows when I browse new folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .IncludeParent = .F. endwith |
61. Is there any option to add an expand or collapse (+/-) buttons left to each folder
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .ExpandFolders = .T. endwith |
62. How can I show the lines between child and parents
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .ExpandFolders = .T. .HasLines = .T. endwith |
63. How can I show the lines at root
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .ExpandFolders = .T. .HasLines = .T. .HasLinesAtRoot = .T. endwith |
64. How can I show or hide the expand/collapse buttons
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .ExpandFolders = .T. .HasLines = .T. .HasLinesAtRoot = .T. .HasButtons = .F. endwith |
65. How can I show only folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .IncludeFiles = .F. endwith |
66. How can I change the default icon being displayed for parent folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.LoadIcon(thisform.ExFileView1.ExecuteTemplate("loadpicture(`c:\exontrol\images\week.ico`)"),1234)
.IncludeParentIconKey = 1234
endwith
|
67. How can I expand or collapse a folder, when the user double clicks it
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .ExpandFolders = .T. .ExpandOnDblClk = .T. endwith |
68. How do I search or find files
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .Search = "A*.A*" endwith |
69. How do I stop programatically the searching
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .StopSearch endwith |
70. How do I display in the Modified column, the number of days since the file or folder was changed
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .ModifiedDaysAgo = 356 endwith |
71. How can I enable filtering the folders and files
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ColumnFilterButton("Name") = .T.
endwith
|
72. How can I enlarge the width of the drop down filter window
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ColumnFilterButton("Name") = .T.
.FilterBarDropDownWidth("Name") = "-256"
endwith
|
73. How can I enlarge the width of the drop down filter window
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ColumnFilterButton("Name") = .T.
.FilterBarDropDownWidth("Name") = 2
endwith
|
74. How do I specify my own filters
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ColumnFilterButton("Name") = .T.
.AddColumnCustomFilter("Name","(Executable files)","*.exe|*.com|*.bat")
endwith
|
75. How do I remove or clear my own filters
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ColumnFilterButton("Name") = .T.
.AddColumnCustomFilter("Name","(Executable files)","*.exe|*.com|*.bat")
.ClearColumnCustomFilters("Name")
endwith
|
76. How can I enlarge the height of the drop down filter window
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ColumnFilterButton("Name") = .T.
.FilterBarDropDownHeight = "-256"
endwith
|
77. How do I filter a column
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ColumnFilterButton("Name") = .T.
.ColumnFilterType("Name") = 1
.ColumnFilter("Name") = "*.exe|*.com|*.bat"
.ApplyFilter
endwith
|
78. How do I change the caption in the filter bar
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ColumnFilterButton("Name") = .T.
.ColumnFilterType("Name") = 1
.ColumnFilter("Name") = "*.exe|*.com|*.bat"
.ApplyFilter
.FilterBarCaption = "new filter"
endwith
|
79. How do I remove or clear the filter
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ColumnFilterButton("Name") = .T.
.ColumnFilterType("Name") = 1
.ColumnFilter("Name") = "*.exe|*.com|*.bat"
.ApplyFilter
.ClearFilter
endwith
|
80. How do I specify the height of the filter bar
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ColumnFilterButton("Name") = .T.
.ColumnFilterType("Name") = 1
.ColumnFilter("Name") = "*.exe|*.com|*.bat"
.ApplyFilter
.FilterBarHeight = 32
endwith
|
81. How do I change the color in the filter bar
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ColumnFilterButton("Name") = .T.
.ColumnFilterType("Name") = 1
.ColumnFilter("Name") = "*.exe|*.com|*.bat"
.ApplyFilter
.FilterBarForeColor = 255
endwith
|
82. How do I change the color in the filter bar
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ColumnFilterButton("Name") = .T.
.ColumnFilterType("Name") = 1
.ColumnFilter("Name") = "*.exe|*.com|*.bat"
.ApplyFilter
.FilterBarBackColor = 255
endwith
|
83. How do I change the visual appearanceof the filter bar
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.ColumnFilterButton("Name") = .T.
.ColumnFilterType("Name") = 1
.ColumnFilter("Name") = "*.exe|*.com|*.bat"
.ApplyFilter
.FilterBarBackColor = 16777216
endwith
|
84. How do I change the font in the filter bar
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ColumnFilterButton("Name") = .T.
.ColumnFilterType("Name") = 1
.ColumnFilter("Name") = "*.exe|*.com|*.bat"
.ApplyFilter
.FilterBarFont.Name = "Verdana"
endwith
|
85. How do I sort a column
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.Sort("Name",.F.)
endwith
|
86. How do I change the "All" caption in the drop down filter window
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ColumnFilterButton("Name") = .T.
.Description(0) = "new name for (All)"
endwith
|
87. How can I change the "Filter For" caption in the column's drop down filter window
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ColumnFilterButton("Name") = .T.
.Description(1) = "new caption"
endwith
|
88. Is there any option to remove the tooltip when the cursor hovers the column's drop down filter window
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ColumnFilterButton("Name") = .T.
.Description(2) = ""
.Description(3) = ""
.Description(4) = ""
.Description(5) = ""
.Description(6) = ""
endwith
|
89. How can I expand programatically a folder
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ExpandFolders = .T.
.Expand("WINNT")
endwith
|
91. How can I include files when folders are expanded
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .ExpandFolders = .T. .IncludeFilesInFolder = .T. endwith |
92. Is there any option to include only folders that match a pattern
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .IncludeFolderFilter = "W*" endwith |
93. Is there any option to exclude folders that match a pattern
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .ExcludeFolderFilter = "W*" endwith |
94. Is there any way to rename a column
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.ColumnCaption("Name") = "__ new name __"
endwith
|
95. How can I change the "today" caption that's shown in the Modified column
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .ModifiedDaysAgo = 356 .Option(0) = "__ new today __" .Refresh endwith |
96. How can I change the format of the caption that's shown in the Modified column, if ModifiedDaysAgo property is used
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .ModifiedDaysAgo = 356 .Option(1) = "vor %i Tagen" .Refresh endwith |
97. How can I change the date format in the Modified column
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .Option(2) = "ddd, MMM dd yy" .Refresh endwith |
98. How can I change the date format in the Modified column
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .Option(2) = "yyyyy " .Option(3) = "hh:mm" .Refresh endwith |
99. How to check whether the control hides the three-letter file-name extensions for certain files, reducing clutter in folder windows
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .Option(4) = .T. .Refresh endwith |
100. How do I change the visual aspect only for the thumb in the scroll bar, using EBN
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
.VisualAppearance.Add(3,"c:\exontrol\images\hot.ebn")
.Background(388) = 16777216
.Background(389) = 33554432
.Background(391) = 50331648
.ColumnAutoResize = .F.
.ColumnWidth("Name") = 256
endwith
|
101. How do I change the visual aspect for thumb parts in the scroll bars, using EBN
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
.VisualAppearance.Add(3,"c:\exontrol\images\hot.ebn")
.Background(388) = 16777216
.Background(389) = 33554432
.Background(391) = 50331648
.Background(260) = 16777216
.Background(261) = 33554432
.Background(263) = 50331648
.ColumnAutoResize = .F.
.ColumnWidth("Name") = 256
endwith
|
102. How do I get the selected folder
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 var_Count = .Get(0).Count endwith |
103. How do I get the count of all items
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 var_Count = .Get(1).Count endwith |
104. How do I get the count oc checked items
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 .HasCheckBox = -1 var_Count = .Get(2).Count endwith |
105. How do I get the count of all items
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1 var_Count = .Get(3).Count endwith |
106. How do I change the foreground color for specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("*")
.Folder = .T.
.ForeColor = 255
.Apply
endwith
endwith
|
107. How do I change the foreground color for specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("W*")
.Folder = .T.
.ForeColor = 255
.Apply
endwith
endwith
|
108. How do I change the foreground color for specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("*")
.Folder = .F.
.ForeColor = 255
.Apply
endwith
endwith
|
109. How do I change the foreground color for specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("*.bat")
.Folder = .F.
.ForeColor = 255
.Apply
endwith
endwith
|
110. How do I change the background color for specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("*")
.Folder = .T.
.BackColor = 255
.Apply
endwith
endwith
|
111. How do I change the background color for specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("W*")
.Folder = .T.
.BackColor = 255
.Apply
endwith
endwith
|
112. How do I change the background color for specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("*")
.Folder = .F.
.BackColor = 255
.Apply
endwith
endwith
|
113. How do I change the background color for specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("*.bat")
.Folder = .F.
.BackColor = 255
.Apply
endwith
endwith
|
114. How do I bold specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("*")
.Folder = .T.
.Bold = .T.
.Apply
endwith
endwith
|
115. How do I bold specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("W*")
.Folder = .T.
.Bold = .T.
.Apply
endwith
endwith
|
116. How do I bold specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("*")
.Folder = .F.
.Bold = .T.
.Apply
endwith
endwith
|
117. How do I bold specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("*.bat")
.Folder = .F.
.Bold = .T.
.Apply
endwith
endwith
|
118. How do I draw as italic specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("*")
.Folder = .T.
.Italic = .T.
.Apply
endwith
endwith
|
119. How do I draw as italic specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("W*")
.Folder = .T.
.Italic = .T.
.Apply
endwith
endwith
|
120. How do I draw as italic specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("*")
.Folder = .F.
.Italic = .T.
.Apply
endwith
endwith
|
121. How do I draw as italic specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("*.bat")
.Folder = .F.
.Italic = .T.
.Apply
endwith
endwith
|
122. How do I draw as strikeout specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("*")
.Folder = .T.
.StrikeOut = .T.
.Apply
endwith
endwith
|
123. How do I draw as strikeout specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("W*")
.Folder = .T.
.StrikeOut = .T.
.Apply
endwith
endwith
|
124. How do I draw as strikeout specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("*")
.Folder = .F.
.StrikeOut = .T.
.Apply
endwith
endwith
|
125. How do I draw as strikeout specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("*.bat")
.Folder = .F.
.StrikeOut = .T.
.Apply
endwith
endwith
|
126. How do I underline specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("*")
.Folder = .T.
.Underline = .T.
.Apply
endwith
endwith
|
127. How do I underline specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("W*")
.Folder = .T.
.Underline = .T.
.Apply
endwith
endwith
|
128. How do I underline specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("*")
.Folder = .F.
.Underline = .T.
.Apply
endwith
endwith
|
129. How do I underline specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("*.bat")
.Folder = .F.
.Underline = .T.
.Apply
endwith
endwith
|
130. How do I change the text being diplayed in the Type column for specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("*")
.Folder = .T.
.Type = "__newtype__"
.Apply
endwith
endwith
|
131. How do I change the text being diplayed in the Type column for specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("W*")
.Folder = .T.
.Type = "__newtype__"
.Apply
endwith
endwith
|
132. How do I change the text being diplayed in the Type column for specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("*")
.Folder = .F.
.Type = "__newtype__"
.Apply
endwith
endwith
|
133. How do I change the text being diplayed in the Type column for specified files or folders
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("*.bat")
.Folder = .F.
.Type = "__newtype__"
.Apply
endwith
endwith
|
134. How can I reffer a folder or a file, without using the wild characters
| Visual FoxPro 9 |
|---|
with thisform.ExFileView1
with .FileTypes.Add("TEMP")
.HasPattern = .F.
.Folder = .T.
.Bold = .T.
.Apply
endwith
endwith
|