190. Is it possible to specify a different background/foreground color for the property from the cursor, aka hot item
with thisform.PropertiesList1
	.Select(thisform.PropertiesList1)
	.HotBackColor = RGB(0,0,255)
	.HotForeColor = RGB(255,255,255)
	.SelBackColor = RGB(0,0,128)
	.SelForeColor = RGB(255,255,255)
endwith
189. My development environment does not have any Object,GetOcx,DefaultDispatch,GetControlUnknown,nativeObject, ... property, is there any alternative I can pass the component to PrintExt so I can get printed
with thisform.PropertiesList1
	.Select(thisform.PropertiesList1)
	.Template = "Dim p;p = CreateObject(`Exontrol.Print`);p.PrintExt = Me;p.AutoRelease = False;p.Preview();"
endwith
188. How can I display checkboxes for flags values only
with thisform.PropertiesList1
	.BeginUpdate
	.AllowMultipleValuesOnEnum = .T.
	with .Add("Nextevent",81,8)
		.AddValue(1,"Option A")
		.AddValue(2,"Option B")
		.AddValue(3,"Option C")
		.AddValue(4,"Option D")
		.AddValue(16,"Flag A")
		.AddValue(32,"Flag B")
		.AddValue(64,"Flag C")
		.AddValue(128,"Flag D")
	endwith
	.Refresh
	.EndUpdate
endwith
187. Is is possible to display a checkbox on ENUM types
with thisform.PropertiesList1
	.BeginUpdate
	.AllowMultipleValuesOnEnum = .T.
	with .Add("Nextevent",5,8)
		.AddValue(1,"Flag A")
		.AddValue(2,"Flag B")
		.AddValue(4,"Flag C")
		.AddValue(8,"Flag D")
		.AddValue(16,"Flag E")
	endwith
	.Refresh
	.EndUpdate
endwith
186. Is it possible to display the full path in the EditFolder editor
with thisform.PropertiesList1
	with .Add("Folder","c:\",18)
		.Option(12) = "Current Folder"
		.Option(15) = .F.
		.Option(17) = .T.
	endwith
endwith
185. How can I include a "New Folder" button so user can create new folders when using the EditFolder form
with thisform.PropertiesList1
	.Add("Folder","",18).Option(16) = .T.
endwith
184. Is it possible to show always the selection in the files/folders list in the EditFolder dialog
with thisform.PropertiesList1
	.Add("Folder","",18).Option(14) = .T.
endwith
183. How can I hide the editbox in the EditFolder editor
with thisform.PropertiesList1
	.Add("Folder","",18).Option(15) = .F.
endwith
182. How can I include the files in the in the EditFolder editor
with thisform.PropertiesList1
	.Add("Folder","",18).Option(13) = .T.
endwith
181. Is it possible to change the caption in the EditFolder editor
with thisform.PropertiesList1
	.Add("Folder","",18).Option(12) = "Select a directory..."
endwith
180. Is it possible to filter for properties that contains a specified text
with thisform.PropertiesList1
	.BeginUpdate
	.Select(thisform.PropertiesList1)
	.Sort(.T.)
	.FilterBarPromptVisible = .T.
	.FilterBarPrompt = "<font ;7><fgcolor=FF0000><c>Start Filtering..."
	.FilterBarPromptPattern = "back"
	.IncrementalSearch = 1
	.EndUpdate
endwith
179. How can I filter the properties at runtime
with thisform.PropertiesList1
	.BeginUpdate
	.Select(thisform.PropertiesList1)
	.Sort(.T.)
	.FilterBarPromptVisible = .T.
	.FilterBarPrompt = "<font ;7><fgcolor=FF0000><c>Start Filtering..."
	.FilterBarPromptPattern = "Back"
	.EndUpdate
endwith
178. Is it possible to change the caption being displayed in the filter bar
with thisform.PropertiesList1
	.BeginUpdate
	.Select(thisform.PropertiesList1)
	.Sort(.T.)
	.FilterBarPromptVisible = .T.
	.FilterBarPrompt = "<font ;7><fgcolor=FF0000><c>Start Filtering..."
	.EndUpdate
endwith
177. How can I enable the filter-prompt feature
with thisform.PropertiesList1
	.BeginUpdate
	.Select(thisform.PropertiesList1)
	.Sort(.T.)
	.FilterBarPromptVisible = .T.
	.EndUpdate
endwith
176. How do I specify the height of the control's header bar
with thisform.PropertiesList1
	.BeginUpdate
	.HeaderVisible = .T.
	.HeaderHeight = 36
	.Select(thisform.PropertiesList1)
	.Sort(.T.)
	.EndUpdate
endwith
175. Is it possible to display a checkbox for ENUM types that allow BIT combinations
with thisform.PropertiesList1
	.BeginUpdate
	.AllowMultipleValuesOnEnum = .T.
	.Select(thisform.PropertiesList1)
	.Sort(.T.)
	.FilterBarPromptVisible = .T.
	.FilterBarPromptPattern = "Inc"
	.EndUpdate
endwith
174. Can I add different EditFile entries with different filters
with thisform.PropertiesList1
	.BeginUpdate
	.Add("Text File","text.txt",17).Option(9) = "Text Files (*.txt)|*.txt"
	.Add("INI File","text.ini",17).Option(9) = "INI Files (*.ini)|*.ini"
	.EndUpdate
endwith
173. Is it possible to expand items/entries when user types for searching properties
with thisform.PropertiesList1
	.BeginUpdate
	.ExpandOnSearch = .T.
	.Select(thisform.PropertiesList1)
	.EndUpdate
endwith
172. Is it possible to show ticks on the slider control
with thisform.PropertiesList1
	.Add("Slider",50,16)
	with .Add("Slider w/h ticks",50,16)
		.SliderStep = 10
		.SliderTickFrequency = 10
	endwith
	.Refresh
endwith
171. How can I edit a number between a range or interval
with thisform.PropertiesList1
	.BeginUpdate
	with .Add("Slider",50,16)
		.Numeric = .T.
		.SpinStep = 0
		.SliderWidth = 0
		.SliderStep = 0
		.SliderMin = 0
		.SliderMax = 100
	endwith
endwith
170. How can I edit a number between a range or interval
with thisform.PropertiesList1
	.BeginUpdate
	with .Add("Slider","0.5",16)
		.NumericFloat = .T.
		.SpinStep = 0
		.SliderWidth = 0
		.SliderStep = 0
		.SliderMin = 0
		.SliderMax = 1
	endwith
endwith
169. How can I add a slider or track bar editor, with a fixed size
with thisform.PropertiesList1
	.BeginUpdate
	.Add("Slider","0.5",16).SliderWidth = 48
	.EndUpdate
endwith
168. How can I add a slider or track bar editor, so it covers half of the cell
with thisform.PropertiesList1
	.BeginUpdate
	.Add("Slider","0.5",16).SliderWidth = -50
	.EndUpdate
endwith
167. How can I add a slider or track bar editor, so it covers the full cell
with thisform.PropertiesList1
	.BeginUpdate
	.Add("Slider","0.5",16).SliderWidth = -100
	.EndUpdate
endwith
166. How can I add a spin editor within a range or interval of float numbers
with thisform.PropertiesList1
	.BeginUpdate
	.AllowSpin = .T.
	with .Add("Slider","0.5",16)
		.NumericFloat = .T.
		.SpinStep = ".01"
		.SliderWidth = 0
		.SliderMin = 0
		.SliderMax = 1
	endwith
	.EndUpdate
endwith
165. How can I add a spin editor within a range or interval of numbers
with thisform.PropertiesList1
	.BeginUpdate
	.AllowSpin = .T.
	with .Add("Slider",10,16)
		.Numeric = .T.
		.SliderWidth = 0
		.SliderMin = 5
		.SliderMax = 15
	endwith
	.EndUpdate
endwith
164. Can I use your HTML format to display a property
with thisform.PropertiesList1
	.BeginUpdate
	.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
	.SelBackColor = 0x1000000
	.SelForeColor = RGB(0,0,0)
	var_s = "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/"
	var_s = var_s + "oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/"
	var_s = var_s + "wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx"
	var_s = var_s + "3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN"
	var_s = var_s + "AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="
	.Images(var_s)
	.Object.ColumnWidth(0) = 304
	with .Add("I1","link1",1)
		var_s1 = "<br>text icons <img>1</img>, <img>2</img>, ... pictures <img>p1</img>, <img>p2</img> <br><br>tex"
		var_s1 = var_s1 + "t <b>bold</b>, <i>italic</i>, <u>underline</u>, <s>strikeout</s>, ...<br><dotline>and so on...<b"
		var_s1 = var_s1 + "r> <a>anchor</a> or <a2>hyperlink</a><br><fgcolor=FF0000>fgcolor</fgcolor> or <bgcolor=00FF00>bg"
		var_s1 = var_s1 + "color</bgcolor>"
		.HTMLName = var_s1
		.Height = 128
	endwith
	.EndUpdate
endwith
163. How can I display I picture to a property
with thisform.PropertiesList1
	.BeginUpdate
	.Object.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"
	.Object.HTMLPicture("pic2") = "c:\exontrol\images\auction.gif"
	with .Add("Picture 1","link1",1)
		.HTMLName = "<img>pic1</img> <b>1</b>"
		.Height = 48
	endwith
	.Add("Edit","text",1)
	with .Add("Picture 2","link2",1)
		.HTMLName = "<img>pic2</img> <b>2</b>"
		.Height = 32
	endwith
	.EndUpdate
endwith
162. How do I display an icon to a property
with thisform.PropertiesList1
	.DefaultItemHeight = 18
	.BeginUpdate
	var_s = "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/"
	var_s = var_s + "oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/"
	var_s = var_s + "wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx"
	var_s = var_s + "3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN"
	var_s = var_s + "AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="
	.Images(var_s)
	.Add("I1","link1",1).HTMLName = "<img>1</img> <b>1</b>"
	.Add("Edit","text",1)
	.Add("I2","link1",1).HTMLName = "<img>2</img> <b>2</b>"
	.EndUpdate
endwith
161. How do I specify the height of a property
with thisform.PropertiesList1
	.BeginUpdate
	.Object.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"
	.Object.HTMLPicture("pic2") = "c:\exontrol\images\auction.gif"
	with .Add("Picture 1","link1",1)
		.HTMLName = "<img>pic1</img> <b>1</b>"
		.Height = 48
	endwith
	.Add("Edit","text",1)
	with .Add("Picture 2","link2",1)
		.HTMLName = "<img>pic2</img> <b>2</b>"
		.Height = 48
	endwith
	.EndUpdate
endwith
160. How do I edit a float number
with thisform.PropertiesList1
	.BeginUpdate
	.AllowSpin = .T.
	with .Add("Edit","0.5",1)
		.NumericFloat = .T.
		.SpinStep = "0.1"
	endwith
	.EndUpdate
endwith
159. How do I change the step for a spin
with thisform.PropertiesList1
	.BeginUpdate
	.AllowSpin = .T.
	.Add("Edit",10,1).SpinStep = 10
	.EndUpdate
endwith
158. How do I sort the items in a drop down editor
with thisform.PropertiesList1
	with .Add("Enum",1,8)
		.DropDownItems = 1
		.AddValue(1,"First choice")
		.AddValue(2,"Second choice")
		.AddValue(3,"Third choice")
		.SortItems()
	endwith
	.Refresh
endwith
157. How do I specify the number of visible items in a drop down editor
with thisform.PropertiesList1
	with .Add("Enum",1,8)
		.DropDownItems = 1
		.AddValue(1,"First choice")
		.AddValue(2,"Second choice")
		.AddValue(3,"Third choice")
	endwith
	.Refresh
endwith
156. How do I bold a property
with thisform.PropertiesList1
	.BeginUpdate
	.Add("Edit","text",1).Bold = .T.
	.EndUpdate
endwith
155. How do I disable or enable a property
with thisform.PropertiesList1
	.BeginUpdate
	.Add("Edit","text",1).Enabled = .F.
	.EndUpdate
endwith
154. How do I specify a tooltip for a property
with thisform.PropertiesList1
	.BeginUpdate
	.AllowTooltip = .T.
	.Add("ToolTip","",1).ToolTip = "This is a bit of text that shows up when the user hovers the cursor"
	.EndUpdate
endwith
153. How do I specify the masking character
with thisform.PropertiesList1
	.BeginUpdate
	with .Add("Edit",12,1)
		.Mask = "##"
		.MaskChar = 48
	endwith
	.EndUpdate
endwith
152. How do I specify a mask
with thisform.PropertiesList1
	.BeginUpdate
	.Add("Edit",12,1).Mask = "##"
	.EndUpdate
endwith
151. How do I edit a number
with thisform.PropertiesList1
	.BeginUpdate
	.AllowSpin = .T.
	.Add("Edit",15,1).Numeric = .T.
	.EndUpdate
endwith
150. How do I change the foreground color for a cell
with thisform.PropertiesList1
	.BeginUpdate
	.Add("Edit","text",1).CellForeColor(0) = RGB(255,0,0)
	.EndUpdate
endwith
149. How do I change the foreground color for a cell
with thisform.PropertiesList1
	.BeginUpdate
	.Add("Edit","text",1).CellForeColor(1) = RGB(255,0,0)
	.EndUpdate
endwith
148. How do I change the background color for a cell
with thisform.PropertiesList1
	.BeginUpdate
	.Add("Edit","text",1).CellBackColor(0) = RGB(255,0,0)
	.EndUpdate
endwith
147. How do I change the background color for a cell
with thisform.PropertiesList1
	.BeginUpdate
	.Add("Edit","text",1).CellBackColor(1) = RGB(255,0,0)
	.EndUpdate
endwith
146. How do I change the background color for a property
with thisform.PropertiesList1
	.BeginUpdate
	.Add("Edit","text",1).BackColor = RGB(255,0,0)
	.EndUpdate
endwith
145. How do I change the foreground color for a property
with thisform.PropertiesList1
	.BeginUpdate
	.Add("Edit","text",1).ForeColor = RGB(255,0,0)
	.EndUpdate
endwith
144. How do I associate an extra data to a property
with thisform.PropertiesList1
	.BeginUpdate
	.Add("Color",255,2).UserData = "your data"
	.EndUpdate
endwith
143. How do I get the caption of the property, as it is displayed in the browser
with thisform.PropertiesList1
	.BeginUpdate
	.Add("Color",255,2).ID = 12345
	.Add(.Property("Color").DisplayValue,"",-1).Bold = .T.
	.EndUpdate
endwith
142. How do I get the value of the property
with thisform.PropertiesList1
	.BeginUpdate
	.Add("Edit","text",1).ID = 12345
	.Add(.Property("Edit").Value,"",-1).Bold = .T.
	.EndUpdate
endwith
141. How do I make a property read only
with thisform.PropertiesList1
	.BeginUpdate
	.Add("Edit","text",1).Locked = .T.
	.EndUpdate
endwith
140. How do I specify a description for a property
with thisform.PropertiesList1
	.BeginUpdate
	.Add("Edit","text",1).Description = "This is just a description"
	.SelectedProperty = .Property("Edit")
	.EndUpdate
endwith
139. How do I get the identifer of the property
with thisform.PropertiesList1
	.Add("Edit","text",1).ID = 12345
	.Add(.Property("Edit").ID,"",-1).Bold = .T.
	.Refresh
endwith
138. How do I get the type of the property
with thisform.PropertiesList1
	.Add("Edit","text",1)
	.Add(.Property("Edit").Type,"",-1).Bold = .T.
	.Refresh
endwith
137. How do I get the name of the property
with thisform.PropertiesList1
	.Add("Edit","text",1)
	.Add(.Property("Edit").Name,"",-1).Bold = .T.
	.Refresh
endwith
136. How do I select a folder
with thisform.PropertiesList1
	.Add("Folder","",18)
	.Refresh
endwith
135. How do I select a file
with thisform.PropertiesList1
	.Add("File","",17)
	.Refresh
endwith
134. How do I slider or trackbar editor
with thisform.PropertiesList1
	.Add("Slider",50,16)
	.Refresh
endwith
133. How do I add a button
with thisform.PropertiesList1
	.Add("Button","Aaa",15)
	.Refresh
endwith
132. How do I add a check box editor
with thisform.PropertiesList1
	.Add("Check",.T.,14)
	.Refresh
endwith
131. How do I add a color editor
with thisform.PropertiesList1
	.Add("Color",255,13)
	.Refresh
endwith
130. How do I add a new object properties inside the control
with thisform.PropertiesList1
	.BeginUpdate
	.Add("MySelf 1",thisform.PropertiesList1,12)
	.Add("MySelf 2",thisform.PropertiesList1,12)
	.EndUpdate
endwith
129. How do I add a new objects inside the control
with thisform.PropertiesList1
	.BeginUpdate
	.Add("MySelf",thisform.PropertiesList1,12)
	.EndUpdate
endwith
128. How do I add a drop down editor with some predefined values
with thisform.PropertiesList1
	with .Add("DropDown","Aaa",11)
		.AddValue(1,"First choice")
		.AddValue(2,"Second choice")
		.AddValue(3,"Third choice")
	endwith
	.Refresh
endwith
127. How do I add a password editor
with thisform.PropertiesList1
	.Add("Password","pass",10)
	.Refresh
endwith
126. How do I add a date picker editor
with thisform.PropertiesList1
	.Add("Date","1/1/2001",9)
	.Refresh
endwith
125. How do I add a drop down editor with some predefined values
with thisform.PropertiesList1
	with .Add("Enum",1,8)
		.AddValue(1,"First choice")
		.AddValue(2,"Second choice")
		.AddValue(3,"Third choice")
	endwith
	.Refresh
endwith
124. How do I add a boolean editor
with thisform.PropertiesList1
	.Add("Boolean",.T.,7)
	.Refresh
endwith
123. How do I add a button or a page editor
with thisform.PropertiesList1
	.Add("Page","",6)
	.Refresh
endwith
122. How do I add a picture editor
with thisform.PropertiesList1
	.Add("Picture",0,5)
	.Refresh
endwith
121. How do I add a font editor
with thisform.PropertiesList1
	.Add("Font","Arial",4)
	.Refresh
endwith
120. How do I add a font editor
with thisform.PropertiesList1
	.Add("Font","Arial",3)
	.Refresh
endwith
119. How do I add a color editor
with thisform.PropertiesList1
	.Add("Color",255,2)
	.Refresh
endwith
118. How do I add an edit
with thisform.PropertiesList1
	.Add("Edit","text",1)
	.Refresh
endwith
117. How do I specify the character sets being included in the font editor
with thisform.PropertiesList1
	.Object.Option(7) = "0"
	.Add("Font","Arial",4)
	.Refresh
endwith
116. How do I show or hide the bottom scroll bar in the drop down date picker calendar editor
with thisform.PropertiesList1
	.Object.Option(6) = .F.
	.Add("Date","1/1/2001",9)
	.Refresh
endwith
115. How do highlight the "Today" date is the drop down date picker calendar editor
with thisform.PropertiesList1
	.Object.Option(5) = .T.
	.Add("Date","1/1/2001",9)
	.Refresh
endwith
114. How do I show or hide the "Today" button is the drop down date picker calendar editor
with thisform.PropertiesList1
	.Object.Option(4) = .F.
	.Add("Date","1/1/2001",9)
	.Refresh
endwith
113. How to specify the first day of the week in the drop down date picker calendar editor
with thisform.PropertiesList1
	.Object.Option(3) = 1
	.Add("Date","1/1/2001",9)
	.Refresh
endwith
112. How to specifies the shortcut for the weekdays to be displayed in the drop down date picker calendar editor
with thisform.PropertiesList1
	.Object.Option(2) = "Du Lu Ma Mi Jo Vi Si"
	.Add("Date","1/1/2001",9)
	.Refresh
endwith
111. How can I change the name of the months in the drop down date picker calendar editor
with thisform.PropertiesList1
	.Object.Option(1) = "Janvier Février Mars Avril Mai Juin Juillet Août Septembre Octobre Novembre Décembre"
	.Add("Date","1/1/2001",9)
	.Refresh
endwith
110. Can I change the "Today" caption being displayed in the drop down date picker calendar editor
with thisform.PropertiesList1
	.Object.Option(0) = "Azi"
	.Add("Date","1/1/2001",9)
	.Refresh
endwith
109. How can I open the drop down editors, using a different than F4 key
with thisform.PropertiesList1
	.EditOnSelect = .F.
	.EditOnKey = 113
	.Select(thisform.PropertiesList1)
endwith
108. How do I display the color properties as RGB
with thisform.PropertiesList1
	.BeginUpdate
	.DisplayColorAs = 1
	.Add("Red",255,2)
	.Add("Blue",16711680,2)
	.EndUpdate
endwith
107. How do I get the list of properties being listed as a string
with thisform.PropertiesList1
	.Select(thisform.PropertiesList1)
	.Add(" _ toString _ ",.ToString(0),15).Bold = .T.
	.Sort(.T.)
endwith
106. How can I display a picture to a property
with thisform.PropertiesList1
	.DefaultItemHeight = 48
	.Object.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"
	.Object.HTMLPicture("pic2") = "c:\exontrol\images\auction.gif"
	.Add("Picture 1","link1",1).HTMLName = "Pic <img>pic1</img> or <img>pic2</img>"
	.Refresh
endwith
105. How do I show or hide the properties with multiple parameters
with thisform.PropertiesList1
	.ShowMultipleParams = .F.
	.Select(thisform.PropertiesList1)
endwith
104. How can I add a hyperlink or anchor element
with thisform.PropertiesList1
	.BackColor = RGB(255,255,255)
	.SelBackColor = .BackColor
	.SelForeColor = .ForeColor
	.Add("Link 1","link1",1).HTMLName = "Link <a1>one</s>"
	.Refresh
endwith
103. Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions, after the user clicks it
with thisform.PropertiesList1
	.SelBackColor = RGB(255,128,255)
	.Object.FormatAnchor(0) = "<b><u><fgcolor=880000> </fgcolor></u></b>"
	.Add("Link 1","link1",1).HTMLName = "Link <a1>one</s>"
	.Refresh
endwith
102. Can I change the visual effect, appearance for the anchor, hyperlink elements, in HTML captions
with thisform.PropertiesList1
	.SelBackColor = RGB(255,128,255)
	.Object.FormatAnchor(1) = "<b><u> </u></b>"
	.Add("Link 1","link1",1).HTMLName = "Link <a1>one</s>"
	.Refresh
endwith
101. How do I specify the indentation of the child items relative to their parents
with thisform.PropertiesList1
	.AutoIndent = .F.
	.Indent = 8
	.Select(thisform.PropertiesList1)
	.ExpandAll
endwith
100. How do I specify the indentation of the child items relative to their parents
with thisform.PropertiesList1
	.Indent = 11
	.Select(thisform.PropertiesList1)
	.ExpandAll
endwith
99. How do I get the a property based on its identifier
with thisform.PropertiesList1
	.BeginUpdate
	.Add("Root","",-1)
	.Add("Child 1",1,1,0,"Root").ID = 1234
	.Add("Child 2",2,1,0,"Root")
	.Object.ExpandItem("Root") = .T.
	.Add("Property",.Property(1234).Name,-1)
	.EndUpdate
endwith
98. How do I get the a property based on its index
with thisform.PropertiesList1
	.BeginUpdate
	.Add("Root","",-1)
	.Add("Child 1",1,1,0,"Root")
	.Add("Child 2",2,1,0,"Root")
	.Object.ExpandItem("Root") = .T.
	.Add("Item",.Item(1).Name,-1)
	.EndUpdate
endwith
97. How do I get the number or count of the properties being listed
with thisform.PropertiesList1
	.BeginUpdate
	.Add("Root","",-1)
	.Add("Child 1",1,1,0,"Root")
	.Add("Child 2",2,1,0,"Root")
	.Object.ExpandItem("Root") = .T.
	.Add("Count",.Count,-1)
	.EndUpdate
endwith
96. How do I change the name or the caption for a column
with thisform.PropertiesList1
	.HeaderVisible = .T.
	.Object.ColumnCaption(0) = "Properties"
	.Select(thisform.PropertiesList1)
endwith
95. How do I expand a property
with thisform.PropertiesList1
	.BeginUpdate
	.Add("Root","",-1)
	.Add("Child 1",1,1,0,"Root")
	.Add("Child 2",2,1,0,"Root")
	.Object.ExpandItem("Root") = .T.
	.EndUpdate
endwith
94. How do I change the width for a column
with thisform.PropertiesList1
	.Object.ColumnWidth(1) = 48
	.Select(thisform.PropertiesList1)
endwith
93. How do I clear or remove all properties
with thisform.PropertiesList1
	.Add("First","A",1)
	.Clear
	.Refresh
endwith
92. How do I remove a property
with thisform.PropertiesList1
	.Add("First","A",1)
	.Remove("First")
	.Refresh
endwith
91. How do I add a property
with thisform.PropertiesList1
	.Add("First Name","Mihai",1)
	.Refresh
endwith
90. How do I change the visual aspect description's spliter, using EBN
with thisform.PropertiesList1
	.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
	.Object.Background(0) = 0x1000000
	.Select(thisform.PropertiesList1)
endwith
89. How do I change the visual aspect for thumb parts in the scroll bars, using EBN
with thisform.PropertiesList1
	.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
	.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
	.VisualAppearance.Add(3,"c:\exontrol\images\hot.ebn")
	.Object.Background(388) = 0x1000000
	.Object.Background(389) = 0x2000000
	.Object.Background(391) = 0x3000000
	.Object.Background(260) = 0x1000000
	.Object.Background(261) = 0x2000000
	.Object.Background(263) = 0x3000000
	.Select(thisform.PropertiesList1)
endwith
88. I've seen that you can change the visual appearance for the scroll bar. How can I do that
with thisform.PropertiesList1
	.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
	.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
	.VisualAppearance.Add(3,"c:\exontrol\images\hot.ebn")
	.Object.Background(324) = 0x1000000
	.Object.Background(325) = 0x2000000
	.Object.Background(327) = 0x3000000
	.Object.Background(404) = RGB(240,240,240)
	.Object.Background(276) = RGB(240,240,240)
	.Object.Background(511) = RGB(240,240,240)
	.HeaderVisible = .T.
	.ColumnAutoResize = .F.
	.Select(thisform.PropertiesList1)
endwith
87. Can I change the forecolor for the tooltip
with thisform.PropertiesList1
	.ToolTipDelay = 1
	.ToolTipWidth = 364
	.Object.Background(66) = RGB(255,0,0)
	.AllowTooltip = .T.
	.Select(thisform.PropertiesList1)
endwith
86. Can I change the background color for the tooltip
with thisform.PropertiesList1
	.ToolTipDelay = 1
	.ToolTipWidth = 364
	.Object.Background(65) = RGB(255,0,0)
	.Select(thisform.PropertiesList1)
	.AllowTooltip = .T.
endwith
85. Can I change the default border of the tooltip, using your EBN files
with thisform.PropertiesList1
	.ToolTipDelay = 1
	.ToolTipWidth = 364
	.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
	.Object.Background(64) = 0x1000000
	.Select(thisform.PropertiesList1)
	.AllowTooltip = .T.
endwith
84. Is there any option to highligth the column from the cursor - point
with thisform.PropertiesList1
	.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
	.Object.Background(32) = 0x1000000
	.HeaderVisible = .T.
endwith
83. How can change the visual appearance for the spin control, using your EBN files
with thisform.PropertiesList1
	.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
	.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
	.Object.Background(22) = 0x1000000
	.Object.Background(23) = 0x2000000
	.Object.Background(24) = 0x1000000
	.Object.Background(25) = 0x2000000
	.AllowSpin = .T.
	.Add("Spin",50,1)
	.Refresh
endwith
82. How can change the visual appearance for the slider or track bar, using your EBN files
with thisform.PropertiesList1
	.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
	.Object.Background(16) = 0x1000000
	.Object.Background(15) = RGB(210,210,210)
	.Add("Slider",50,16)
	.Refresh
endwith
81. How do I change the visual aspect of the drop down calendar window, that shows up if I click the drop down filter button, using EBN
with thisform.PropertiesList1
	.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
	.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
	.Object.Background(8) = 0x1000000
	.Object.Background(9) = 0x1000000
	.Object.Background(10) = 0x2000000
	.Object.Background(11) = 0x1000000
	.Object.Background(12) = RGB(230,230,230)
	.Object.Background(13) = RGB(230,230,230)
	.Object.Background(14) = 0x1000000
	.Add("Date","1/1/2001",9)
	.Refresh
endwith
80. How can change the visual appearance for the button that are visible inside the editors, using your EBN files
with thisform.PropertiesList1
	.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
	.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
	.Object.Background(7) = 0x1000000
	.Object.Background(6) = 0x2000000
	.Select(thisform.PropertiesList1)
endwith
79. How can change the visual appearance for the button that shows the drop down editors, using your EBN files
with thisform.PropertiesList1
	.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
	.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
	.Object.Background(4) = 0x1000000
	.Object.Background(5) = 0x2000000
	.Select(thisform.PropertiesList1)
endwith
78. Can I change the order of the buttons in the scroll bar
with thisform.PropertiesList1
	.Object.ScrollOrderParts(1) = "t,l,r"
	.Object.ScrollOrderParts(0) = "t,l,r"
	.Select(thisform.PropertiesList1)
endwith
77. The thumb size seems to be very small. Can I make it bigger
with thisform.PropertiesList1
	.Object.ScrollThumbSize(0) = 128
	.Select(thisform.PropertiesList1)
endwith
76. How do I enlarge or change the size of the control's scrollbars
with thisform.PropertiesList1
	.ScrollHeight = 18
	.ScrollWidth = 18
	.ScrollButtonWidth = 18
	.ScrollButtonHeight = 18
	.Select(thisform.PropertiesList1)
endwith
75. How can I display my text on the scroll bar, using a different font
with thisform.PropertiesList1
	.Object.ScrollPartCaption(0,256) = "This is just a text"
	.ScrollFont(0).Size = 12
	.Select(thisform.PropertiesList1)
endwith
74. How can I display my text on the scroll bar
with thisform.PropertiesList1
	.Object.ScrollPartCaption(0,256) = "this is just a text"
	.Select(thisform.PropertiesList1)
endwith
73. How do I assign a tooltip to a scrollbar
with thisform.PropertiesList1
	.Object.ScrollToolTip(0) = "This is a tooltip being shown when you click and drag the thumb in the vertical scroll bar"
	.Select(thisform.PropertiesList1)
endwith
72. How do I assign an icon to the button in the scrollbar
with thisform.PropertiesList1
	var_s = "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/"
	var_s = var_s + "oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/"
	var_s = var_s + "wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx"
	var_s = var_s + "3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN"
	var_s = var_s + "AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="
	.Images(var_s)
	.Object.ScrollPartVisible(0,32768) = .T.
	.Object.ScrollPartCaption(0,32768) = "<img>1</img>"
	.ScrollHeight = 18
	.ScrollButtonWidth = 18
	.Select(thisform.PropertiesList1)
endwith
71. I need to add a button in the scroll bar. Is this possible
with thisform.PropertiesList1
	.Object.ScrollPartVisible(0,32768) = .T.
	.Object.ScrollPartCaption(0,32768) = "1"
	.Select(thisform.PropertiesList1)
endwith
70. Can I display an additional buttons in the scroll bar
with thisform.PropertiesList1
	.Object.ScrollPartVisible(0,32768) = .T.
	.Object.ScrollPartVisible(0,16384) = .T.
	.Object.ScrollPartVisible(0,1) = .T.
	.Object.ScrollPartVisible(0,2) = .T.
	.Select(thisform.PropertiesList1)
endwith
69. Can I change the font for the tooltip
with thisform.PropertiesList1
	.ToolTipDelay = 1
	with .ToolTipFont
		.Name = "Tahoma"
		.Size = 14
	endwith
	.AllowTooltip = .T.
	.Select(thisform.PropertiesList1)
endwith
68. How do I call your x-script language
with thisform.PropertiesList1
	with .ExecuteTemplate("Add(`Bold`,1,1)")
		.Bold = .T.
	endwith
endwith
67. How do I disable sorting the columns when clicking the control's header
with thisform.PropertiesList1
	.SortOnClick = 0
	.HeaderVisible = .T.
	.Select(thisform.PropertiesList1)
endwith
66. Can I use your EBN files to change the visual appearance for +/- expand - collapse buttons
with thisform.PropertiesList1
	.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
	.VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn")
	.HasButtons = 4
	.Object.HasButtonsCustom(0) = 16777216
	.Object.HasButtonsCustom(1) = 33554432
	.Select(thisform.PropertiesList1)
endwith
65. Can I use my own icons for the +/- ( expand/collapse ) buttons
with thisform.PropertiesList1
	var_s = "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/"
	var_s = var_s + "oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/"
	var_s = var_s + "wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx"
	var_s = var_s + "3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN"
	var_s = var_s + "AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA="
	.Images(var_s)
	.HasButtons = 4
	.Object.HasButtonsCustom(0) = 1
	.Object.HasButtonsCustom(1) = 2
	.Select(thisform.PropertiesList1)
endwith
64. How do I change visual appearance of the +/- ( expand/collapse ) buttons
with thisform.PropertiesList1
	.HasButtons = 3
	.Select(thisform.PropertiesList1)
endwith
63. How do I browse or select for a com or net object
with thisform.PropertiesList1
	.SelectedObject = thisform.PropertiesList1
endwith
62. How do I expand all properties
with thisform.PropertiesList1
	.Select(thisform.PropertiesList1)
	.ExpandAll
endwith
61. How do I enable resizing the columns at runtime
with thisform.PropertiesList1
	.ColumnsAllowSizing = .T.
	.Select(thisform.PropertiesList1)
endwith
60. How do I call your x-script language
with thisform.PropertiesList1
	.Template = "Add(`First`,1,1)"
endwith
59. How can I enable or disable the control
with thisform.PropertiesList1
	.Enabled = .F.
	.Select(thisform.PropertiesList1)
endwith
58. I've seen that the width of the tooltip is variable. Can I make it larger
with thisform.PropertiesList1
	.ToolTipWidth = 328
	.AllowTooltip = .T.
	.Select(thisform.PropertiesList1)
endwith
57. How do I disable showing the tooltip for all control
with thisform.PropertiesList1
	.ToolTipDelay = 0
	.AllowTooltip = .T.
	.Select(thisform.PropertiesList1)
endwith
56. How do I let the tooltip being displayed longer
with thisform.PropertiesList1
	.ToolTipPopDelay = 10000
	.AllowTooltip = .T.
	.Select(thisform.PropertiesList1)
endwith
55. How do I show the tooltip quicker
with thisform.PropertiesList1
	.ToolTipDelay = 1
	.AllowTooltip = .T.
	.Select(thisform.PropertiesList1)
endwith
54. How do I get the handle of the control's window
with thisform.PropertiesList1
	var_hWnd = .hWnd
endwith
53. How do I show alternate rows in different background color
with thisform.PropertiesList1
	.BackColorAlternate = RGB(240,240,240)
	.Select(thisform.PropertiesList1)
endwith
52. How do enable or disable tooltips
with thisform.PropertiesList1
	.AllowTooltip = .T.
	.Select(thisform.PropertiesList1)
endwith
51. How do change the foreground color for the control's header bar, using EBN
with thisform.PropertiesList1
	.HeaderVisible = .T.
	.ForeColorHeader = RGB(255,0,0)
endwith
50. How do change the visual appearance for the control's header bar, using EBN
with thisform.PropertiesList1
	.HeaderVisible = .T.
	.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
	.BackColorHeader = 0x1000000
endwith
49. How do I change the foreground color for the description part in the bottom side of the control
with thisform.PropertiesList1
	.ForeColorDescription = RGB(255,0,0)
	.Select(thisform.PropertiesList1)
endwith
48. How do I change the visual appearance for the description part in the bottom side of the control, using your EBN files
with thisform.PropertiesList1
	.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
	.BackColorDescription = 0x1000000
endwith
47. How do I change the background color for the description part in the bottom side of the control
with thisform.PropertiesList1
	.BackColorDescription = RGB(255,0,0)
endwith
46. Is there any option to specify the height of the items, before adding them
with thisform.PropertiesList1
	.DefaultItemHeight = 13
	.Select(thisform.PropertiesList1)
endwith
45. How do I show or hide the connection between categories
with thisform.PropertiesList1
	.MarkCategories = .T.
	.LinkCategories = .F.
	.ShowCategories = .T.
	.ShowPropertyPages = .F.
	.Select(thisform.PropertiesList1)
endwith
44. How do I show or hide the categories
with thisform.PropertiesList1
	.MarkCategories = .T.
	.MarkLineColor = RGB(255,0,0)
	.ShowCategories = .T.
	.ShowPropertyPages = .F.
	.Select(thisform.PropertiesList1)
endwith
43. How do I change the foreground color for categories
with thisform.PropertiesList1
	.ForeColorCategories = RGB(255,0,0)
	.ShowCategories = .T.
	.ShowPropertyPages = .F.
	.Select(thisform.PropertiesList1)
endwith
42. How do I change the background color for categories
with thisform.PropertiesList1
	.BackColorCategories = RGB(255,0,0)
	.ShowCategories = .T.
	.ShowPropertyPages = .F.
	.Select(thisform.PropertiesList1)
endwith
41. How do I sort the control
with thisform.PropertiesList1
	.Select(thisform.PropertiesList1)
	.Sort(.F.)
endwith
40. Is there any option to change the color for the grid lines
with thisform.PropertiesList1
	.HasGridLines = -1
	.GridLineColor = RGB(255,0,0)
	.Select(thisform.PropertiesList1)
endwith
39. How do I specify the default category
with thisform.PropertiesList1
	.DefaultCategory = "Font"
	.ShowCategories = .T.
	.ShowPropertyPages = .F.
	.Select(thisform.PropertiesList1)
endwith
38. How do I show or hide the categories
with thisform.PropertiesList1
	.MarkCategories = .F.
	.ShowCategories = .T.
	.ShowPropertyPages = .F.
	.Select(thisform.PropertiesList1)
endwith
37. How do I get a property based on its name
with thisform.PropertiesList1
	.Add("First Name","Mihai",1).ID = 100
	.Add("Last Name","Filimon",1)
	.SelectedProperty = .Property(100)
	.Refresh
endwith
36. How do I get a property based on its name
with thisform.PropertiesList1
	.Add("First Name","Mihai",1)
	.Add("Last Name","Filimon",1)
	.SelectedProperty = .Property("Last Name")
	.Refresh
endwith
35. How do I maintain performance while making several changes
with thisform.PropertiesList1
	.BeginUpdate
	.Add("First",1,1)
	.Add("Second",1,1)
	.EndUpdate
endwith
34. How can I get a list of interfaces that an object implements
with thisform.PropertiesList1
	DEBUGOUT( .Interfaces(thisform.PropertiesList1) )
endwith
33. How can I display something else when including the elements of a collection
with thisform.PropertiesList1
	.ShowObjects = .T.
	.ShowItemsCollection = .T.
	.NameItemsCollection = "Name;Caption;Item;Index"
	.Select(thisform.PropertiesList1)
endwith
32. How can I include the elements of a collection
with thisform.PropertiesList1
	.ShowObjects = .T.
	.ShowItemsCollection = .T.
	.Select(thisform.PropertiesList1)
endwith
31. How can I use a spin control to edit numeric values
with thisform.PropertiesList1
	.AllowSpin = .T.
	.Select(thisform.PropertiesList1)
endwith
30. How can I change the control's font
with thisform.PropertiesList1
	.Font.Name = "Tahoma"
	.Select(thisform.PropertiesList1)
endwith
29. How do I show or hide the variables of an object like Font
with thisform.PropertiesList1
	.ShowVariables = .T.
	.Select(.Font)
endwith
28. How do I show or hide the categories
with thisform.PropertiesList1
	.ShowCategories = .T.
	.ShowPropertyPages = .F.
	.Select(thisform.PropertiesList1)
endwith
27. How do I refresh the control
with thisform.PropertiesList1
	.Add("Last Name","Filimon",1)
	.Refresh
endwith
26. How can still display the selected items when the control loses the focus
with thisform.PropertiesList1
	.HideSelection = .F.
	.Add("First Name","Mihai",1)
	.Add("Last Name","Filimon",1)
	.SelectedProperty = .Property("Last Name")
	.Refresh
endwith
25. How do I change the visual appearance effect for the selected item, using EBN
with thisform.PropertiesList1
	.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
	.SelBackColor = 0x1000000
	.SelForeColor = RGB(0,0,0)
	.Add("First Name","Mihai",1)
	.Add("Last Name","Filimon",1)
	.SelectedProperty = .Property("Last Name")
	.Refresh
endwith
24. How do I change the colors for the selected item
with thisform.PropertiesList1
	.SelBackColor = RGB(0,0,0)
	.Add("First Name","Mihai",1)
	.Add("Last Name","Filimon",1)
	.SelectedProperty = .Property("Last Name")
	.Refresh
endwith
23. How do I show or hide the non browseable members
with thisform.PropertiesList1
	.ShowNonBrowsable = .T.
	.Select(thisform.PropertiesList1)
endwith
22. How can I hide or show the object's property pages
with thisform.PropertiesList1
	.ShowPropertyPages = .F.
	.Select(thisform.PropertiesList1)
endwith
21. How do I filter properties when loading
with thisform.PropertiesList1
	.FireIncludeProperty = .T.
endwith
20. How do I get or set the selected property
with thisform.PropertiesList1
	.Add("First Name","Mihai",1)
	.Add("Last Name","Filimon",1)
	.SelectedProperty = .Property("Last Name")
	.Refresh
endwith
19. How do I remove "Invalid property value." message
with thisform.PropertiesList1
	.InvalidValueMessage = ""
	.Select(thisform.PropertiesList1)
endwith
18. How do I change the "Invalid property value." message
with thisform.PropertiesList1
	.InvalidValueMessage = "new message"
	.Select(thisform.PropertiesList1)
endwith
17. How do I edit a property as soon as the user selects it
with thisform.PropertiesList1
	.EditOnSelect = .T.
	.Select(thisform.PropertiesList1)
endwith
16. How do I make the control read only
with thisform.PropertiesList1
	.ReadOnly = .T.
	.Select(thisform.PropertiesList1)
endwith
15. How do I show or hide the read only members
with thisform.PropertiesList1
	.ShowReadOnly = .F.
	.Select(thisform.PropertiesList1)
endwith
14. How do I show or hide the grid lines
with thisform.PropertiesList1
	.HasGridLines = 0
	.Select(thisform.PropertiesList1)
endwith
13. How do I hide the hierarchy lines
with thisform.PropertiesList1
	.HasLines = .F.
	.Select(thisform.PropertiesList1)
endwith
12. How can I add the horizontal scroll bar
with thisform.PropertiesList1
	.ColumnAutoResize = .F.
	.HeaderVisible = .T.
	.Select(thisform.PropertiesList1)
endwith
11. How do I show or hide the control's header bar
with thisform.PropertiesList1
	.HeaderVisible = .T.
	.Select(thisform.PropertiesList1)
endwith
10. How do I show or hide the objects members
with thisform.PropertiesList1
	.ShowObjects = .F.
	.Select(thisform.PropertiesList1)
endwith
9. How do I show or hide the restricted members
with thisform.PropertiesList1
	.ShowRestricted = .F.
	.Select(thisform.PropertiesList1)
endwith
8. How do I show or hide the hidden members
with thisform.PropertiesList1
	.ShowHidden = .F.
	.Select(thisform.PropertiesList1)
endwith
7. How do I browse or select an object
with thisform.PropertiesList1
	.Select(thisform.PropertiesList1)
endwith
6. How do I change the control's foreground color
with thisform.PropertiesList1
	.ForeColor = RGB(120,0,120)
	.Select(thisform.PropertiesList1)
endwith
5. How do I change the control's background color
with thisform.PropertiesList1
	.BackColor = RGB(200,200,200)
endwith
4. How do change the visual appearance for the control's border, using EBN
with thisform.PropertiesList1
	.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
	.BorderStyle = 16777216
	.BackColor = RGB(255,255,255)
endwith
3. How do I remove the control's border
with thisform.PropertiesList1
	.BorderStyle = 0
endwith
2. How do I change the height of the description part in the bottom side of the control
with thisform.PropertiesList1
	.DescriptionHeight = 100
endwith
1. How do I hide or show the description part in the bottom side of the control
with thisform.PropertiesList1
	.DescriptionVisible = .F.
endwith