176 |
How can I select an item using on its full part, not only on its icon or caption
// Occurs when the user presses and then releases the left mouse button over the control. Procedure OnComClick Forward Send OnComClick Showln (ComItemFromPoint(Self,-1,-1)) End_Procedure Procedure OnCreate Forward Send OnCreate Set ComHighlightItemType to (OLEexFull + OLEexUnion) Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Variant voItem Get ComAddItem of hoGroup "Item <b>1</b>" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComCaptionFormat of hoItem to OLEexHTML Send Destroy to hoItem Variant voItem1 Get ComAddItem of hoGroup "Item <b>2</b>" Nothing to voItem1 Handle hoItem1 Get Create (RefClass(cComItem)) to hoItem1 Set pvComObject of hoItem1 to voItem1 Set ComCaptionFormat of hoItem1 to OLEexHTML Send Destroy to hoItem1 Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
175 |
How can I change the group's color
Procedure OnCreate Forward Send OnCreate Set ComBackColorGroup to (RGB(255,0,0)) Set ComBackColorGroup2 to (ComBackColorGroup(Self)) Set ComGroupAppearance to OLEexNone Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Get ComAdd of hoGroups "Group 1" to Nothing Get ComAdd of hoGroups "Group 2" to Nothing Send Destroy to hoGroups End_Procedure |
174 |
How can remove the group's appearance
|
173 |
How can I align the group/item
Procedure OnCreate Forward Send OnCreate Send ComBeginUpdate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Set ComAlignment of hoGroup to OLEexLeft Variant voItem Get ComAddItem of hoGroup "Item 1" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComAlignment of hoItem to OLEexLeft Send Destroy to hoItem Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups Send ComEndUpdate End_Procedure |
172 |
Just seen the BackgroundExt property. Not sure what I can do with that
|
171 |
Can I specify a different colors for groups using your EBN files
|
170 |
Can I change the color of the control's border (EBN files)
Procedure OnCreate Forward Send OnCreate Variant voAppearance Get ComVisualAppearance to voAppearance Handle hoAppearance Get Create (RefClass(cComAppearance)) to hoAppearance Set pvComObject of hoAppearance to voAppearance Get ComAdd of hoAppearance 1 "c:\exontrol\images\normal.ebn" to Nothing Send Destroy to hoAppearance Set ComAppearance to (|CI$1aabbc8 + OLEexDrop) End_Procedure |
169 |
How can I make the items visible automatically, or how can I ensure an item is visible or it is shown in the control's client area
|
168 |
How can I scroll to the end of the groups
|
167 |
How can I display an item by multiple lines
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "SingleLine" Nothing to Nothing Variant voItem Get ComAddItem of hoGroup "This is bit of text that should break the lines, and so <b>multiple</b> lines are displayed" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComAlignment of hoItem to OLEexLeft Set ComCaptionFormat of hoItem to OLEexHTML Set ComSingleLine of hoItem to False Send Destroy to hoItem Get ComAddItem of hoGroup "Item 3" Nothing to Nothing Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
166 |
How can I indent an item
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Variant voItem Get ComAddItem of hoGroup "Item 1" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComAlignment of hoItem to OLEexLeft Send Destroy to hoItem Variant voItem1 Get ComAddItem of hoGroup "Sub Item <b>1</b>" Nothing to voItem1 Handle hoItem1 Get Create (RefClass(cComItem)) to hoItem1 Set pvComObject of hoItem1 to voItem1 Set ComCaptionFormat of hoItem1 to OLEexHTML Set ComAlignment of hoItem1 to OLEexLeft Set ComIndent of hoItem1 to 12 Send Destroy to hoItem1 Variant voItem2 Get ComAddItem of hoGroup "Sub Item <b>2</b>" Nothing to voItem2 Handle hoItem2 Get Create (RefClass(cComItem)) to hoItem2 Set pvComObject of hoItem2 to voItem2 Set ComCaptionFormat of hoItem2 to OLEexHTML Set ComAlignment of hoItem2 to OLEexLeft Set ComIndent of hoItem2 to 12 Send Destroy to hoItem2 Variant voItem3 Get ComAddItem of hoGroup "Sub Item <b>3</b>" Nothing to voItem3 Handle hoItem3 Get Create (RefClass(cComItem)) to hoItem3 Set pvComObject of hoItem3 to voItem3 Set ComCaptionFormat of hoItem3 to OLEexHTML Set ComAlignment of hoItem3 to OLEexLeft Set ComIndent of hoItem3 to 12 Send Destroy to hoItem3 Variant voItem4 Get ComAddItem of hoGroup "Sub Sub Item <b>3</b>" Nothing to voItem4 Handle hoItem4 Get Create (RefClass(cComItem)) to hoItem4 Set pvComObject of hoItem4 to voItem4 Set ComCaptionFormat of hoItem4 to OLEexHTML Set ComAlignment of hoItem4 to OLEexLeft Set ComIndent of hoItem4 to 24 Send Destroy to hoItem4 Variant voItem5 Get ComAddItem of hoGroup "Item 2" Nothing to voItem5 Handle hoItem5 Get Create (RefClass(cComItem)) to hoItem5 Set pvComObject of hoItem5 to voItem5 Set ComAlignment of hoItem5 to OLEexLeft Send Destroy to hoItem5 Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
165 |
How can I use HTML format to display my item
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Variant voItem Get ComAddItem of hoGroup "<font Tahoma;11>T</font>his is an HTML <b>item</b> assigned to a <fgcolor=FF0000>group</fgcolor>" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComCaptionFormat of hoItem to OLEexHTML Send Destroy to hoItem Get ComAddItem of hoGroup "Item 3" Nothing to Nothing Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
164 |
How can I assign a tooltip to an item
|
163 |
How can I show or hide an item
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Variant voItem Get ComAddItem of hoGroup "Item 2" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComVisible of hoItem to False Send Destroy to hoItem Get ComAddItem of hoGroup "Item 3" Nothing to Nothing Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
162 |
How can I align an icon for an item
Procedure OnCreate Forward Send OnCreate Send ComImages "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=" Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Variant voItem Get ComAddItem of hoGroup "Item 1" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComImage of hoItem to 1 Set ComImageAlignment of hoItem to OLEexLeft Send Destroy to hoItem Variant voItem1 Get ComAddItem of hoGroup "Item 2" Nothing to voItem1 Handle hoItem1 Get Create (RefClass(cComItem)) to hoItem1 Set pvComObject of hoItem1 to voItem1 Set ComImage of hoItem1 to 2 Set ComImageAlignment of hoItem1 to OLEexRight Send Destroy to hoItem1 Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
161 |
How can I stop highlighting an item
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Variant voItem Get ComAddItem of hoGroup "Item 2 - no " Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComAllowHighLight of hoItem to False Send Destroy to hoItem Get ComAddItem of hoGroup "Item 3" Nothing to Nothing Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
160 |
How can I change the item's background color
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Variant voItem Get ComAddItem of hoGroup "Item 2" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComBackColor of hoItem to (RGB(255,0,0)) Set ComBackColor2 of hoItem to (RGB(255,255,255)) Send Destroy to hoItem Get ComAddItem of hoGroup "Item 3" Nothing to Nothing Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
159 |
How can I change the item's background color
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Variant voItem Get ComAddItem of hoGroup "<bgcolor=FF0000>Item</bgcolor> 2" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComCaptionFormat of hoItem to OLEexHTML Send Destroy to hoItem Get ComAddItem of hoGroup "Item 3" Nothing to Nothing Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
158 |
How can I change the item's foreground color
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Variant voItem Get ComAddItem of hoGroup "Item 2" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComForeColor of hoItem to (RGB(255,0,0)) Send Destroy to hoItem Get ComAddItem of hoGroup "Item 3" Nothing to Nothing Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
157 |
How can I change the visual appearance of the item using your EBN files
Procedure OnCreate Forward Send OnCreate Variant voAppearance Get ComVisualAppearance to voAppearance Handle hoAppearance Get Create (RefClass(cComAppearance)) to hoAppearance Set pvComObject of hoAppearance to voAppearance Get ComAdd of hoAppearance 1 "c:\exontrol\images\normal.ebn" to Nothing Send Destroy to hoAppearance Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Variant voItem Get ComAddItem of hoGroup "Item 2" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComBackColor of hoItem to |CI$1000000 Send Destroy to hoItem Get ComAddItem of hoGroup "Item 3" Nothing to Nothing Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
156 |
How can I change the item's background color
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Variant voItem Get ComAddItem of hoGroup "Item 2" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComBackColor of hoItem to (RGB(255,0,0)) Send Destroy to hoItem Get ComAddItem of hoGroup "Item 3" Nothing to Nothing Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
155 |
How can I get the group of the item
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Variant voItem Get ComAddItem of hoGroup "Item 2" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Variant voGroup1 Get ComGroup of hoItem to voGroup1 Handle hoGroup1 Get Create (RefClass(cComGroup)) to hoGroup1 Set pvComObject of hoGroup1 to voGroup1 Set ComBold of hoGroup1 to True Send Destroy to hoGroup1 Send Destroy to hoItem Get ComAddItem of hoGroup "Item 3" Nothing to Nothing Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
154 |
How can I get the index of the item
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Variant voItem Get ComAddItem of hoGroup "Item 1" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComCaption of hoItem to (ComIndex(hoItem)) Send Destroy to hoItem Variant voItem1 Get ComAddItem of hoGroup "Item 2" Nothing to voItem1 Handle hoItem1 Get Create (RefClass(cComItem)) to hoItem1 Set pvComObject of hoItem1 to voItem1 Set ComCaption of hoItem1 to (ComIndex(hoItem1)) Send Destroy to hoItem1 Variant voItem2 Get ComAddItem of hoGroup "Item 3" Nothing to voItem2 Handle hoItem2 Get Create (RefClass(cComItem)) to hoItem2 Set pvComObject of hoItem2 to voItem2 Set ComCaption of hoItem2 to (ComIndex(hoItem2)) Send Destroy to hoItem2 Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
153 |
How can I draw underlined an item
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Variant voItem Get ComAddItem of hoGroup "<u>Item</u> 2" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComCaptionFormat of hoItem to OLEexHTML Send Destroy to hoItem Get ComAddItem of hoGroup "Item 3" Nothing to Nothing Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
152 |
How can I draw underlined an item
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Variant voItem Get ComAddItem of hoGroup "Item 2" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComUnderline of hoItem to True Send Destroy to hoItem Get ComAddItem of hoGroup "Item 3" Nothing to Nothing Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
151 |
How can I draw as strikeout an item
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Variant voItem Get ComAddItem of hoGroup "<s>Item</s> 2" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComCaptionFormat of hoItem to OLEexHTML Send Destroy to hoItem Get ComAddItem of hoGroup "Item 3" Nothing to Nothing Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
150 |
How can I draw as strikeout an item
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Variant voItem Get ComAddItem of hoGroup "Item 2" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComStrikeOut of hoItem to True Send Destroy to hoItem Get ComAddItem of hoGroup "Item 3" Nothing to Nothing Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
149 |
How can I draw as italic an item
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Variant voItem Get ComAddItem of hoGroup "<i>Item</i> 2" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComCaptionFormat of hoItem to OLEexHTML Send Destroy to hoItem Get ComAddItem of hoGroup "Item 3" Nothing to Nothing Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
148 |
How can I draw as italic an item
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Variant voItem Get ComAddItem of hoGroup "Item 2" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComItalic of hoItem to True Send Destroy to hoItem Get ComAddItem of hoGroup "Item 3" Nothing to Nothing Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
147 |
How can I add a anchor or a hyperlink
Procedure OnCreate Forward Send OnCreate Set ComHighlightItemType to OLEexNoHighlight Set ComHandCursor to False Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Variant voItem Get ComAddItem of hoGroup "Link <a1><b>1</b></a>" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComCaptionFormat of hoItem to OLEexHTML Send Destroy to hoItem Variant voItem1 Get ComAddItem of hoGroup "Link <a2><b>2</b></a>" Nothing to voItem1 Handle hoItem1 Get Create (RefClass(cComItem)) to hoItem1 Set pvComObject of hoItem1 to voItem1 Set ComCaptionFormat of hoItem1 to OLEexHTML Send Destroy to hoItem1 Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
146 |
How do I bold an item
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Variant voItem Get ComAddItem of hoGroup "<b>Item</a> 2" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComCaptionFormat of hoItem to OLEexHTML Send Destroy to hoItem Get ComAddItem of hoGroup "Item 3" Nothing to Nothing Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
145 |
How do I bold an item
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Variant voItem Get ComAddItem of hoGroup "Item 2" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComBold of hoItem to True Send Destroy to hoItem Get ComAddItem of hoGroup "Item 3" Nothing to Nothing Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
144 |
How can I align an item
Procedure OnCreate Forward Send OnCreate Send ComImages "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=" Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Set ComItemHeight of hoGroup to 28 Variant voItem Get ComAddItem of hoGroup "Left" 1 to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComAlignment of hoItem to OLEexLeft Send Destroy to hoItem Variant voItem1 Get ComAddItem of hoGroup "Center" 2 to voItem1 Handle hoItem1 Get Create (RefClass(cComItem)) to hoItem1 Set pvComObject of hoItem1 to voItem1 Set ComAlignment of hoItem1 to OLEexCenter Send Destroy to hoItem1 Variant voItem2 Get ComAddItem of hoGroup "Right" 3 to voItem2 Handle hoItem2 Get Create (RefClass(cComItem)) to hoItem2 Set pvComObject of hoItem2 to voItem2 Set ComAlignment of hoItem2 to OLEexRight Send Destroy to hoItem2 Variant voItem3 Get ComAddItem of hoGroup "Middle" 1 to voItem3 Handle hoItem3 Get Create (RefClass(cComItem)) to hoItem3 Set pvComObject of hoItem3 to voItem3 Set ComAlignment of hoItem3 to OLEexMiddle Send Destroy to hoItem3 Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
143 |
How can I assign some extra data to an item
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Variant voItem Get ComAddItem of hoGroup "Item 1" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComUserData of hoItem to "your data" Send Destroy to hoItem Get ComAddItem of hoGroup "Item 2" Nothing to Nothing Get ComAddItem of hoGroup "Item 3" Nothing to Nothing Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
142 |
How can I assign or display an icon for an item
Procedure OnCreate Forward Send OnCreate Send ComImages "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=" Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Variant voItem Get ComAddItem of hoGroup "Item <img>1</img> text <img>2</img>" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComCaptionFormat of hoItem to OLEexHTML Send Destroy to hoItem Variant voItem1 Get ComAddItem of hoGroup "Item 2" Nothing to voItem1 Handle hoItem1 Get Create (RefClass(cComItem)) to hoItem1 Set pvComObject of hoItem1 to voItem1 Set ComImage of hoItem1 to 2 Send Destroy to hoItem1 Variant voItem2 Get ComAddItem of hoGroup "Item 3" Nothing to voItem2 Handle hoItem2 Get Create (RefClass(cComItem)) to hoItem2 Set pvComObject of hoItem2 to voItem2 Set ComImage of hoItem2 to 3 Send Destroy to hoItem2 Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
141 |
How can I assign or display an icon for an item
Procedure OnCreate Forward Send OnCreate Send ComImages "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=" Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Variant voItem Get ComAddItem of hoGroup "Item 1" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComImage of hoItem to 1 Send Destroy to hoItem Variant voItem1 Get ComAddItem of hoGroup "Item 2" Nothing to voItem1 Handle hoItem1 Get Create (RefClass(cComItem)) to hoItem1 Set pvComObject of hoItem1 to voItem1 Set ComImage of hoItem1 to 2 Send Destroy to hoItem1 Variant voItem2 Get ComAddItem of hoGroup "Item 3" Nothing to voItem2 Handle hoItem2 Get Create (RefClass(cComItem)) to hoItem2 Set pvComObject of hoItem2 to voItem2 Set ComImage of hoItem2 to 3 Send Destroy to hoItem2 Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
140 |
How can I assign or display an icon for an item
Procedure OnCreate Forward Send OnCreate Send ComImages "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=" Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" 1 to Nothing Get ComAddItem of hoGroup "Item 2" 2 to Nothing Get ComAddItem of hoGroup "Item 3" 3 to Nothing Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
139 |
How can I change the item's position
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Get ComAddItem of hoGroup "Item 2" Nothing to Nothing Variant voItem Get ComAddItem of hoGroup "Item 3" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComPosition of hoItem to 0 Send Destroy to hoItem Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
138 |
How can I change the item's caption
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Variant voItem Get ComAddItem of hoGroup "Item 2" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComCaption of hoItem to "new caption" Send Destroy to hoItem Get ComAddItem of hoGroup "Item 3" Nothing to Nothing Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
137 |
How do I add new items
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Variant voItem Get ComAddItem of hoGroup "Item 1" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComBold of hoItem to True Send Destroy to hoItem Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
136 |
How do I assign a group to a set in the shortcut bar
Procedure OnCreate Forward Send OnCreate Send ComImages "gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=" Set ComShowShortcutBar to True Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Set ComShortcut of hoGroup to "Set <img>1</img>" Send Destroy to hoGroup Send Destroy to hoGroups Variant voGroups1 Get ComGroups to voGroups1 Handle hoGroups1 Get Create (RefClass(cComGroups)) to hoGroups1 Set pvComObject of hoGroups1 to voGroups1 Variant voGroup1 Get ComAdd of hoGroups1 "Group 2" to voGroup1 Handle hoGroup1 Get Create (RefClass(cComGroup)) to hoGroup1 Set pvComObject of hoGroup1 to voGroup1 Set ComShortcut of hoGroup1 to "Set <img>1</img>" Send Destroy to hoGroup1 Send Destroy to hoGroups1 Variant voGroups2 Get ComGroups to voGroups2 Handle hoGroups2 Get Create (RefClass(cComGroups)) to hoGroups2 Set pvComObject of hoGroups2 to voGroups2 Variant voGroup2 Get ComAdd of hoGroups2 "Group 3" to voGroup2 Handle hoGroup2 Get Create (RefClass(cComGroup)) to hoGroup2 Set pvComObject of hoGroup2 to voGroup2 Set ComShortcut of hoGroup2 to "Set <img>2</img>" Send Destroy to hoGroup2 Send Destroy to hoGroups2 Variant voGroups3 Get ComGroups to voGroups3 Handle hoGroups3 Get Create (RefClass(cComGroups)) to hoGroups3 Set pvComObject of hoGroups3 to voGroups3 Variant voGroup3 Get ComAdd of hoGroups3 "Group 4" to voGroup3 Handle hoGroup3 Get Create (RefClass(cComGroup)) to hoGroup3 Set pvComObject of hoGroup3 to voGroup3 Set ComShortcut of hoGroup3 to "Set <img>2</img>" Send Destroy to hoGroup3 Send Destroy to hoGroups3 End_Procedure |
135 |
How can I show or hide the expanding or collapsing button
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Send Destroy to hoGroup Send Destroy to hoGroups Variant voGroups1 Get ComGroups to voGroups1 Handle hoGroups1 Get Create (RefClass(cComGroups)) to hoGroups1 Set pvComObject of hoGroups1 to voGroups1 Variant voGroup1 Get ComAdd of hoGroups1 "Group 2, expanding/collapsing button is missing " to voGroup1 Handle hoGroup1 Get Create (RefClass(cComGroup)) to hoGroup1 Set pvComObject of hoGroup1 to voGroup1 Get ComAddItem of hoGroup1 "Item 1" Nothing to Nothing Get ComAddItem of hoGroup1 "Item 2" Nothing to Nothing Set ComExpanded of hoGroup1 to True Set ComAllowExpand of hoGroup1 to False Send Destroy to hoGroup1 Send Destroy to hoGroups1 Variant voGroups2 Get ComGroups to voGroups2 Handle hoGroups2 Get Create (RefClass(cComGroups)) to hoGroups2 Set pvComObject of hoGroups2 to voGroups2 Variant voGroup2 Get ComAdd of hoGroups2 "Group 3" to voGroup2 Handle hoGroup2 Get Create (RefClass(cComGroup)) to hoGroup2 Set pvComObject of hoGroup2 to voGroup2 Get ComAddItem of hoGroup2 "Item 1" Nothing to Nothing Send Destroy to hoGroup2 Send Destroy to hoGroups2 End_Procedure |
134 |
How can I avoid expanding or collapsing a group
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Send Destroy to hoGroup Send Destroy to hoGroups Variant voGroups1 Get ComGroups to voGroups1 Handle hoGroups1 Get Create (RefClass(cComGroups)) to hoGroups1 Set pvComObject of hoGroups1 to voGroups1 Variant voGroup1 Get ComAdd of hoGroups1 "Group 2" to voGroup1 Handle hoGroup1 Get Create (RefClass(cComGroup)) to hoGroup1 Set pvComObject of hoGroup1 to voGroup1 Get ComAddItem of hoGroup1 "Item 1" Nothing to Nothing Get ComAddItem of hoGroup1 "Item 2" Nothing to Nothing Set ComExpanded of hoGroup1 to True Set ComAllowExpand of hoGroup1 to False Send Destroy to hoGroup1 Send Destroy to hoGroups1 Variant voGroups2 Get ComGroups to voGroups2 Handle hoGroups2 Get Create (RefClass(cComGroups)) to hoGroups2 Set pvComObject of hoGroups2 to voGroups2 Variant voGroup2 Get ComAdd of hoGroups2 "Group 3" to voGroup2 Handle hoGroup2 Get Create (RefClass(cComGroup)) to hoGroup2 Set pvComObject of hoGroup2 to voGroup2 Get ComAddItem of hoGroup2 "Item 1" Nothing to Nothing Send Destroy to hoGroup2 Send Destroy to hoGroups2 End_Procedure |
133 |
How can I assign a tooltip to a group
|
132 |
How can I display HTML text in the group's caption
|
131 |
How can I disable scrolling the group's list when it is expanded or collapsed
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Get ComAdd of hoGroups "Group 1" to Nothing Send Destroy to hoGroups Variant voGroups1 Get ComGroups to voGroups1 Handle hoGroups1 Get Create (RefClass(cComGroups)) to hoGroups1 Set pvComObject of hoGroups1 to voGroups1 Variant voGroup Get ComAdd of hoGroups1 "Group 2" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Get ComAddItem of hoGroup "Item 2" Nothing to Nothing Set ComExpanded of hoGroup to True Set ComAllowScroll of hoGroup to False Send Destroy to hoGroup Send Destroy to hoGroups1 Variant voGroups2 Get ComGroups to voGroups2 Handle hoGroups2 Get Create (RefClass(cComGroups)) to hoGroups2 Set pvComObject of hoGroups2 to voGroups2 Get ComAdd of hoGroups2 "Group 3" to Nothing Send Destroy to hoGroups2 End_Procedure |
130 |
How can I change the group's background color ( gradient )
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Get ComAdd of hoGroups "Group 1" to Nothing Send Destroy to hoGroups Variant voGroups1 Get ComGroups to voGroups1 Handle hoGroups1 Get Create (RefClass(cComGroups)) to hoGroups1 Set pvComObject of hoGroups1 to voGroups1 Variant voGroup Get ComAdd of hoGroups1 "Group 2" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Set ComBackColor of hoGroup to (RGB(255,0,0)) Set ComBackColor2 of hoGroup to (RGB(255,255,255)) Send Destroy to hoGroup Send Destroy to hoGroups1 Variant voGroups2 Get ComGroups to voGroups2 Handle hoGroups2 Get Create (RefClass(cComGroups)) to hoGroups2 Set pvComObject of hoGroups2 to voGroups2 Get ComAdd of hoGroups2 "Group 3" to Nothing Send Destroy to hoGroups2 End_Procedure |
129 |
How can I access the bounding rectangle of the group's area
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Get ComAdd of hoGroups "Group 1" to Nothing Send Destroy to hoGroups Variant voGroups1 Get ComGroups to voGroups1 Handle hoGroups1 Get Create (RefClass(cComGroups)) to hoGroups1 Set pvComObject of hoGroups1 to voGroups1 Variant voGroup Get ComAdd of hoGroups1 "Group 2" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Get ComAddItem of hoGroup "Item 2" Nothing to Nothing Get ComAddItem of hoGroup (ComTop(hoGroup)) Nothing to Nothing Get ComAddItem of hoGroup (ComLeft(hoGroup)) Nothing to Nothing Get ComAddItem of hoGroup (ComWidth(hoGroup)) Nothing to Nothing Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups1 Variant voGroups2 Get ComGroups to voGroups2 Handle hoGroups2 Get Create (RefClass(cComGroups)) to hoGroups2 Set pvComObject of hoGroups2 to voGroups2 Get ComAdd of hoGroups2 "Group 3" to Nothing Send Destroy to hoGroups2 End_Procedure |
128 |
How can I expand or collapse a group
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Get ComAdd of hoGroups "Group 1" to Nothing Send Destroy to hoGroups Variant voGroups1 Get ComGroups to voGroups1 Handle hoGroups1 Get Create (RefClass(cComGroups)) to hoGroups1 Set pvComObject of hoGroups1 to voGroups1 Variant voGroup Get ComAdd of hoGroups1 "Group 2" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Get ComAddItem of hoGroup "Item 2" Nothing to Nothing Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups1 Variant voGroups2 Get ComGroups to voGroups2 Handle hoGroups2 Get Create (RefClass(cComGroups)) to hoGroups2 Set pvComObject of hoGroups2 to voGroups2 Get ComAdd of hoGroups2 "Group 3" to Nothing Send Destroy to hoGroups2 End_Procedure |
127 |
How can I specify the height of the items
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Get ComAdd of hoGroups "Group 1" to Nothing Send Destroy to hoGroups Variant voGroups1 Get ComGroups to voGroups1 Handle hoGroups1 Get Create (RefClass(cComGroups)) to hoGroups1 Set pvComObject of hoGroups1 to voGroups1 Variant voGroup Get ComAdd of hoGroups1 "Group 2" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Get ComAddItem of hoGroup "Item 2" Nothing to Nothing Set ComItemHeight of hoGroup to 13 Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups1 Variant voGroups2 Get ComGroups to voGroups2 Handle hoGroups2 Get Create (RefClass(cComGroups)) to hoGroups2 Set pvComObject of hoGroups2 to voGroups2 Get ComAdd of hoGroups2 "Group 3" to Nothing Send Destroy to hoGroups2 End_Procedure |
126 |
How do I put a picture on the group's background
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Get ComAdd of hoGroups "Group 1" to Nothing Send Destroy to hoGroups Variant voGroups1 Get ComGroups to voGroups1 Handle hoGroups1 Get Create (RefClass(cComGroups)) to hoGroups1 Set pvComObject of hoGroups1 to voGroups1 Variant voGroup Get ComAdd of hoGroups1 "Group 2" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Get ComAddItem of hoGroup "Item 2" Nothing to Nothing Variant vPicture Get ComExecuteTemplate "loadpicture(`c:\exontrol\images\zipdisk.gif`)" to vPicture Set ComPicture of hoGroup to (vPicture) Set ComPictureDisplay of hoGroup to OLEUpperRight Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups1 Variant voGroups2 Get ComGroups to voGroups2 Handle hoGroups2 Get Create (RefClass(cComGroups)) to hoGroups2 Set pvComObject of hoGroups2 to voGroups2 Get ComAdd of hoGroups2 "Group 3" to Nothing Send Destroy to hoGroups2 End_Procedure |
125 |
How do I put a picture on the group's background
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Get ComAdd of hoGroups "Group 1" to Nothing Send Destroy to hoGroups Variant voGroups1 Get ComGroups to voGroups1 Handle hoGroups1 Get Create (RefClass(cComGroups)) to hoGroups1 Set pvComObject of hoGroups1 to voGroups1 Variant voGroup Get ComAdd of hoGroups1 "Group 2" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Get ComAddItem of hoGroup "Item 2" Nothing to Nothing Variant vPicture Get ComExecuteTemplate "loadpicture(`c:\exontrol\images\zipdisk.gif`)" to vPicture Set ComPicture of hoGroup to (vPicture) Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups1 Variant voGroups2 Get ComGroups to voGroups2 Handle hoGroups2 Get Create (RefClass(cComGroups)) to hoGroups2 Set pvComObject of hoGroups2 to voGroups2 Get ComAdd of hoGroups2 "Group 3" to Nothing Send Destroy to hoGroups2 End_Procedure |
124 |
How can I change the foreground color for items
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Get ComAdd of hoGroups "Group 1" to Nothing Send Destroy to hoGroups Variant voGroups1 Get ComGroups to voGroups1 Handle hoGroups1 Get Create (RefClass(cComGroups)) to hoGroups1 Set pvComObject of hoGroups1 to voGroups1 Variant voGroup Get ComAdd of hoGroups1 "Group 2" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Get ComAddItem of hoGroup "Item 2" Nothing to Nothing Set ComForeColorList of hoGroup to (RGB(255,0,0)) Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups1 Variant voGroups2 Get ComGroups to voGroups2 Handle hoGroups2 Get Create (RefClass(cComGroups)) to hoGroups2 Set pvComObject of hoGroups2 to voGroups2 Get ComAdd of hoGroups2 "Group 3" to Nothing Send Destroy to hoGroups2 End_Procedure |
123 |
How can I change the background color for the items
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Get ComAdd of hoGroups "Group 1" to Nothing Send Destroy to hoGroups Variant voGroups1 Get ComGroups to voGroups1 Handle hoGroups1 Get Create (RefClass(cComGroups)) to hoGroups1 Set pvComObject of hoGroups1 to voGroups1 Variant voGroup Get ComAdd of hoGroups1 "Group 2" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Get ComAddItem of hoGroup "Item 2" Nothing to Nothing Set ComBackColorList of hoGroup to (RGB(255,0,0)) Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups1 Variant voGroups2 Get ComGroups to voGroups2 Handle hoGroups2 Get Create (RefClass(cComGroups)) to hoGroups2 Set pvComObject of hoGroups2 to voGroups2 Get ComAdd of hoGroups2 "Group 3" to Nothing Send Destroy to hoGroups2 End_Procedure |
122 |
How can I change the group's foreground color
|
121 |
How can I change the group's foreground color
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Get ComAdd of hoGroups "Group 1" to Nothing Send Destroy to hoGroups Variant voGroups1 Get ComGroups to voGroups1 Handle hoGroups1 Get Create (RefClass(cComGroups)) to hoGroups1 Set pvComObject of hoGroups1 to voGroups1 Variant voGroup Get ComAdd of hoGroups1 "Group 2" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Set ComForeColor of hoGroup to (RGB(255,0,0)) Send Destroy to hoGroup Send Destroy to hoGroups1 Variant voGroups2 Get ComGroups to voGroups2 Handle hoGroups2 Get Create (RefClass(cComGroups)) to hoGroups2 Set pvComObject of hoGroups2 to voGroups2 Get ComAdd of hoGroups2 "Group 3" to Nothing Send Destroy to hoGroups2 End_Procedure |
120 |
How can I change the group's background color
|
119 |
How can I change the visual appearance of the group, using EBN files
Procedure OnCreate Forward Send OnCreate Variant voAppearance Get ComVisualAppearance to voAppearance Handle hoAppearance Get Create (RefClass(cComAppearance)) to hoAppearance Set pvComObject of hoAppearance to voAppearance Get ComAdd of hoAppearance 1 "c:\exontrol\images\normal.ebn" to Nothing Send Destroy to hoAppearance Set ComGroupAppearance to OLEexSingle Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Get ComAdd of hoGroups "Group 1" to Nothing Send Destroy to hoGroups Variant voGroups1 Get ComGroups to voGroups1 Handle hoGroups1 Get Create (RefClass(cComGroups)) to hoGroups1 Set pvComObject of hoGroups1 to voGroups1 Variant voGroup Get ComAdd of hoGroups1 "Group 2" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Set ComBackColor of hoGroup to |CI$1000000 Send Destroy to hoGroup Send Destroy to hoGroups1 Variant voGroups2 Get ComGroups to voGroups2 Handle hoGroups2 Get Create (RefClass(cComGroups)) to hoGroups2 Set pvComObject of hoGroups2 to voGroups2 Get ComAdd of hoGroups2 "Group 3" to Nothing Send Destroy to hoGroups2 End_Procedure |
118 |
How can I change the group's background color
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Get ComAdd of hoGroups "Group 1" to Nothing Send Destroy to hoGroups Variant voGroups1 Get ComGroups to voGroups1 Handle hoGroups1 Get Create (RefClass(cComGroups)) to hoGroups1 Set pvComObject of hoGroups1 to voGroups1 Variant voGroup Get ComAdd of hoGroups1 "Group 2" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Set ComBackColor of hoGroup to (RGB(255,0,0)) Send Destroy to hoGroup Send Destroy to hoGroups1 Variant voGroups2 Get ComGroups to voGroups2 Handle hoGroups2 Get Create (RefClass(cComGroups)) to hoGroups2 Set pvComObject of hoGroups2 to voGroups2 Get ComAdd of hoGroups2 "Group 3" to Nothing Send Destroy to hoGroups2 End_Procedure |
117 |
How do I get the index of the group
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Set ComCaption of hoGroup to (ComIndex(hoGroup)) Send Destroy to hoGroup Send Destroy to hoGroups Variant voGroups1 Get ComGroups to voGroups1 Handle hoGroups1 Get Create (RefClass(cComGroups)) to hoGroups1 Set pvComObject of hoGroups1 to voGroups1 Variant voGroup1 Get ComAdd of hoGroups1 "Group 2" to voGroup1 Handle hoGroup1 Get Create (RefClass(cComGroup)) to hoGroup1 Set pvComObject of hoGroup1 to voGroup1 Set ComCaption of hoGroup1 to (ComIndex(hoGroup1)) Send Destroy to hoGroup1 Send Destroy to hoGroups1 Variant voGroups2 Get ComGroups to voGroups2 Handle hoGroups2 Get Create (RefClass(cComGroups)) to hoGroups2 Set pvComObject of hoGroups2 to voGroups2 Variant voGroup2 Get ComAdd of hoGroups2 "Group 3" to voGroup2 Handle hoGroup2 Get Create (RefClass(cComGroup)) to hoGroup2 Set pvComObject of hoGroup2 to voGroup2 Set ComCaption of hoGroup2 to (ComIndex(hoGroup2)) Send Destroy to hoGroup2 Send Destroy to hoGroups2 End_Procedure |
116 |
How can I underline the group's name
|
115 |
How can I underline the group's name
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Get ComAdd of hoGroups "Group 1" to Nothing Send Destroy to hoGroups Variant voGroups1 Get ComGroups to voGroups1 Handle hoGroups1 Get Create (RefClass(cComGroups)) to hoGroups1 Set pvComObject of hoGroups1 to voGroups1 Variant voGroup Get ComAdd of hoGroups1 "Group 2" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Set ComUnderline of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups1 Variant voGroups2 Get ComGroups to voGroups2 Handle hoGroups2 Get Create (RefClass(cComGroups)) to hoGroups2 Set pvComObject of hoGroups2 to voGroups2 Get ComAdd of hoGroups2 "Group 3" to Nothing Send Destroy to hoGroups2 End_Procedure |
114 |
How can I show the group's name as strikeout
|
113 |
How can I show the group's name as strikeout
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Get ComAdd of hoGroups "Group 1" to Nothing Send Destroy to hoGroups Variant voGroups1 Get ComGroups to voGroups1 Handle hoGroups1 Get Create (RefClass(cComGroups)) to hoGroups1 Set pvComObject of hoGroups1 to voGroups1 Variant voGroup Get ComAdd of hoGroups1 "Group 2" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Set ComStrikeOut of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups1 Variant voGroups2 Get ComGroups to voGroups2 Handle hoGroups2 Get Create (RefClass(cComGroups)) to hoGroups2 Set pvComObject of hoGroups2 to voGroups2 Get ComAdd of hoGroups2 "Group 3" to Nothing Send Destroy to hoGroups2 End_Procedure |
112 |
How can I draw as italic the group's name
|
111 |
How do I draw italic the group's name
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Get ComAdd of hoGroups "Group 1" to Nothing Send Destroy to hoGroups Variant voGroups1 Get ComGroups to voGroups1 Handle hoGroups1 Get Create (RefClass(cComGroups)) to hoGroups1 Set pvComObject of hoGroups1 to voGroups1 Variant voGroup Get ComAdd of hoGroups1 "Group 2" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Set ComItalic of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups1 Variant voGroups2 Get ComGroups to voGroups2 Handle hoGroups2 Get Create (RefClass(cComGroups)) to hoGroups2 Set pvComObject of hoGroups2 to voGroups2 Get ComAdd of hoGroups2 "Group 3" to Nothing Send Destroy to hoGroups2 End_Procedure |
110 |
How do I bold the group's name
|
109 |
How do I bold the group's name
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Get ComAdd of hoGroups "Group 1" to Nothing Send Destroy to hoGroups Variant voGroups1 Get ComGroups to voGroups1 Handle hoGroups1 Get Create (RefClass(cComGroups)) to hoGroups1 Set pvComObject of hoGroups1 to voGroups1 Variant voGroup Get ComAdd of hoGroups1 "Group 2" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Set ComBold of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups1 Variant voGroups2 Get ComGroups to voGroups2 Handle hoGroups2 Get Create (RefClass(cComGroups)) to hoGroups2 Set pvComObject of hoGroups2 to voGroups2 Get ComAdd of hoGroups2 "Group 3" to Nothing Send Destroy to hoGroups2 End_Procedure |
108 |
How can I align the icon in the group's caption
|
107 |
How can I align the group's name
|
106 |
How can I align the group's name
|
105 |
How can I assign some extra data to a group
|
104 |
How can I display an icon in the group's caption
|
103 |
How can I display an icon in the group's caption
|
102 |
How can I access an item by its position
Procedure OnCreate Forward Send OnCreate Variant voGroups Get ComGroups to voGroups Handle hoGroups Get Create (RefClass(cComGroups)) to hoGroups Set pvComObject of hoGroups to voGroups Variant voGroup Get ComAdd of hoGroups "Group 1" to voGroup Handle hoGroup Get Create (RefClass(cComGroup)) to hoGroup Set pvComObject of hoGroup to voGroup Get ComAddItem of hoGroup "Item 1" Nothing to Nothing Get ComAddItem of hoGroup "Item 2" Nothing to Nothing Variant voItem Get ComAddItem of hoGroup "Item 3" Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComPosition of hoItem to 0 Send Destroy to hoItem Variant voItem1 Get ComItemByPos of hoGroup 1 to voItem1 Handle hoItem1 Get Create (RefClass(cComItem)) to hoItem1 Set pvComObject of hoItem1 to voItem1 Set ComBold of hoItem1 to True Send Destroy to hoItem1 Set ComExpanded of hoGroup to True Send Destroy to hoGroup Send Destroy to hoGroups End_Procedure |
101 |
How can I change the position of a group
|