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