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