99 |
How can I replace or add an icon at runtime
|
98 |
I need to be able to select hours and minutes, like a clock or slider 0-24h and 0-60 min
|
97 |
Display a custom tooltip
|
96 |
Shows the tooltip of the object moved relative to its default position
// Occurs when the user moves the mouse. Procedure OnComMouseMove Short llButton Short llShift OLE_XPOS_PIXELS llX OLE_YPOS_PIXELS llY Forward Send OnComMouseMove llButton llShift llX llY Send ComShowToolTip "<null>" "<null>" "+8" "+8" End_Procedure Procedure OnCreate Forward Send OnCreate Set ComDisplayAngle to -45 Set ComExpanded to True Variant voItems Get ComItems to voItems Handle hoItems Get Create (RefClass(cComItems)) to hoItems Set pvComObject of hoItems to voItems Set ComToString of hoItems to "Item 0[ttp=tooltip's item][sttp=tooltip's subitem]" Variant voItem Get ComAdd of hoItems "Item 1" Nothing Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComTooltip of hoItem OLEexRadialItems to "This is a bit of text that shown when user <b>hovers</b> the item" Send Destroy to hoItem Variant voItem1 Get ComAdd of hoItems "Item 2" Nothing Nothing to voItem1 Handle hoItem1 Get Create (RefClass(cComItem)) to hoItem1 Set pvComObject of hoItem1 to voItem1 Set ComTooltip of hoItem1 OLEexRadialItems to "This is a bit of text that shown when user hovers the item" Set ComTooltip of hoItem1 OLEexRadialSubItems to "This is a bit of text that shown when user hovers the sub-item" Send Destroy to hoItem1 Send Destroy to hoItems End_Procedure |
95 |
The control shows no icons. What can be the problem (32-bit, alpha channel vs 4-bit icons problem)
|
94 |
ImageSize property on 32 (specifies the size of control' icons/images)
|
93 |
ImageSize property on 16 (specifies the size of control' icons/images)
|
92 |
How can I displays items rotated (exDisplayRadialRotated90)
|
91 |
How can I displays items rotated (exDisplayRadialRotated270)
|
90 |
How can I displays items rotated (exDisplayRadialRotated180)
|
89 |
How can I displays items rotated (exDisplayRadialRotated)
|
88 |
How do I load images to sub-items zone
|
87 |
How can I display the control directly on the screen
|
86 |
How do I add a radial-slider control
|
85 |
How can I display a slider directly on the radial menu, with no items...
|
84 |
How can I programatically browses for a new item
|
83 |
How can I display the items rotated
|
82 |
Is it possible to display the arrow into the items section, and how I can change the default position
|
81 |
Can I display the arrow into the items section
|
80 |
How can I know if the cursor is hovering the center ring ( parent zone )
// Occurs when the user moves the mouse. Procedure OnComMouseMove Short llButton Short llShift OLE_XPOS_PIXELS llX OLE_YPOS_PIXELS llY Forward Send OnComMouseMove llButton llShift llX llY Showln "ParentOnPoint " (ComParentOnPoint(Self,-1,-1)) End_Procedure Procedure OnCreate Forward Send OnCreate Set ComExpanded to True End_Procedure |
79 |
How can I specify the size to display the images/pictures into the items
|
78 |
By default, the parent image is 32-pixels wide. Can I display it larger
|
77 |
Is it possible to specify where to display the item's caption
|
76 |
How can I disable browsing the items, or prevent displaying its children
Procedure OnCreate Forward Send OnCreate Send ComBeginUpdate Set ComExpanded to True Set ComAllowBrowseItem to False Variant voItems Get ComItems to voItems Handle hoItems Get Create (RefClass(cComItems)) to hoItems Set pvComObject of hoItems to voItems Set ComToString of hoItems to "Item 1(1,2),Item 2(1,2),Item 3(1,2),Item 4(1,2),Item 5(1,2),Item 6(1,2),Item 7(1,2),Item 8(1,2)" Send Destroy to hoItems Send ComEndUpdate End_Procedure |
75 |
How do I get the item from the point
// Occurs when the user moves the mouse. Procedure OnComMouseMove Short llButton Short llShift OLE_XPOS_PIXELS llX OLE_YPOS_PIXELS llY Forward Send OnComMouseMove llButton llShift llX llY Variant v Variant voItem Get ComItemFromPoint OLEexRadialFullItems -1 -1 to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Get ComCaption of hoItem OLEexLayerCaptionBackColor to v Send Destroy to hoItem Showln "Full-Item: " v Variant v1 Variant voItem1 Get ComItemFromPoint OLEexRadialItems -1 -1 to voItem1 Handle hoItem1 Get Create (RefClass(cComItem)) to hoItem1 Set pvComObject of hoItem1 to voItem1 Get ComCaption of hoItem1 OLEexLayerCaptionBackColor to v1 Send Destroy to hoItem1 Showln "Item: " v1 Variant v2 Variant voItem2 Get ComItemFromPoint OLEexRadialSubItems -1 -1 to voItem2 Handle hoItem2 Get Create (RefClass(cComItem)) to hoItem2 Set pvComObject of hoItem2 to voItem2 Get ComCaption of hoItem2 OLEexLayerCaptionForeColor to v2 Send Destroy to hoItem2 Showln "SubItem: " v2 End_Procedure Procedure OnCreate Forward Send OnCreate Set ComExpanded to True Variant voItems Get ComItems to voItems Handle hoItems Get Create (RefClass(cComItems)) to hoItems Set pvComObject of hoItems to voItems Set ComToString of hoItems to "Item 1[scap=sub item 1],Item 2[scap=sub item 2],Item 3[scap=sub item 3],Item 4[scap=sub item 4],Item 5[scap=sub item 5],Item 6[scap=sub item 6],Item 7[scap=sub item 7],Item 8[scap=sub item 8]" Send Destroy to hoItems End_Procedure |
74 |
How do I get the index of the pie from the point
// Occurs when the user moves the mouse. Procedure OnComMouseMove Short llButton Short llShift OLE_XPOS_PIXELS llX OLE_YPOS_PIXELS llY Forward Send OnComMouseMove llButton llShift llX llY Showln "Full-Index: " (ComIndexFromPoint(Self,OLEexRadialFullItems,-1,-1)) Showln "Index: " (ComIndexFromPoint(Self,OLEexRadialItems,-1,-1)) Showln "Sub-Index: " (ComIndexFromPoint(Self,OLEexRadialSubItems,-1,-1)) End_Procedure Procedure OnCreate Forward Send OnCreate Set ComExpanded to True End_Procedure |
73 |
How can I select an item
|
72 |
How can I use the sub-items zone only
|
71 |
Is it possible to display all items with a different rotation angle
|
70 |
How can I programatically advance / browse for the parent item (method 2)
// Occurs once the user right clicks the control. Procedure OnComRClick Forward Send OnComRClick Variant v Variant voItem Get ComBrowseItem to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Get ComParent of hoItem to v Send Destroy to hoItem Set ComBrowseItem to v End_Procedure Procedure OnCreate Forward Send OnCreate Set ComExpanded to True Set ComDisplayArrow to OLEexRadialItems Variant voItems Get ComItems to voItems Handle hoItems Get Create (RefClass(cComItems)) to hoItems Set pvComObject of hoItems to voItems Variant voItem1 Get ComAdd of hoItems "Volume" Nothing Nothing to voItem1 Handle hoItem1 Get Create (RefClass(cComItem)) to hoItem1 Set pvComObject of hoItem1 to voItem1 Set ComCaption of hoItem1 OLEexRadialSubItems to "slider" Set ComBrowseType of hoItem1 to OLEexBrowseItemCustom Set ComBrowseCustomType of hoItem1 to OLEexRadialCustomSlider Send Destroy to hoItem1 Variant voItem2 Get ComAdd of hoItems "Item" Nothing Nothing to voItem2 Handle hoItem2 Get Create (RefClass(cComItem)) to hoItem2 Set pvComObject of hoItem2 to voItem2 Variant voItems1 Get ComItems of hoItem2 to voItems1 Handle hoItems1 Get Create (RefClass(cComItems)) to hoItems1 Set pvComObject of hoItems1 to voItems1 Get ComAdd of hoItems1 "Child 1" Nothing Nothing to Nothing Get ComAdd of hoItems1 "Child 2" Nothing Nothing to Nothing Send Destroy to hoItems1 Send Destroy to hoItem2 Send Destroy to hoItems End_Procedure |
69 |
How can I programatically advance / browse for the parent item (method 1)
// Occurs once the user right clicks the control. Procedure OnComRClick Forward Send OnComRClick Send ComGoBack End_Procedure Procedure OnCreate Forward Send OnCreate Set ComExpanded to True Set ComDisplayArrow to OLEexRadialItems Variant voItems Get ComItems to voItems Handle hoItems Get Create (RefClass(cComItems)) to hoItems Set pvComObject of hoItems to voItems Variant voItem Get ComAdd of hoItems "Volume" Nothing Nothing to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComCaption of hoItem OLEexRadialSubItems to "slider" Set ComBrowseType of hoItem to OLEexBrowseItemCustom Set ComBrowseCustomType of hoItem to OLEexRadialCustomSlider Send Destroy to hoItem Variant voItem1 Get ComAdd of hoItems "Item" Nothing Nothing to voItem1 Handle hoItem1 Get Create (RefClass(cComItem)) to hoItem1 Set pvComObject of hoItem1 to voItem1 Variant voItems1 Get ComItems of hoItem1 to voItems1 Handle hoItems1 Get Create (RefClass(cComItems)) to hoItems1 Set pvComObject of hoItems1 to voItems1 Get ComAdd of hoItems1 "Child 1" Nothing Nothing to Nothing Get ComAdd of hoItems1 "Child 2" Nothing Nothing to Nothing Send Destroy to hoItems1 Send Destroy to hoItem1 Send Destroy to hoItems End_Procedure |
68 |
Can I display the pointer with a different angle
|
67 |
How can I use the pointer (select sample)
|
66 |
How can I use the pointer (hot sample)
|
65 |
Is it possible to apply the control's background picture on the parent zone too
|
64 |
Can I display the picture on the parent zone, a bit larger
|
63 |
Is it possible to assign a different background picture when displaying a slider/custom data
|
62 |
How can I customize the custom part of the control, the inside ring/circle
|
61 |
How do I prevent expanding / collapsing the radial menu
Procedure OnCreate Forward Send OnCreate Set ComAllowToggleExpand to False Variant voItems Get ComItems to voItems Handle hoItems Get Create (RefClass(cComItems)) to hoItems Set pvComObject of hoItems to voItems Set ComToString of hoItems to "Item 1(Sub Child 1,Sub Child 2),Item 2,Item 3(1),Item 4,Item 5,Item 6,Item 7,Item 8" Send Destroy to hoItems Variant voItems1 Get ComItems to voItems1 Handle hoItems1 Get Create (RefClass(cComItems)) to hoItems1 Set pvComObject of hoItems1 to voItems1 Variant voItem Get ComItem of hoItems1 "Item 2" to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComBrowseType of hoItem to OLEexBrowseItemCustom Set ComBrowseCustomType of hoItem to OLEexRadialCustomSlider Send Destroy to hoItem Send Destroy to hoItems1 End_Procedure |
60 |
Is it possible to change the parent's picture/image when expanding collapsing the radial menu
|
59 |
Is it possible to assign a different picture on the parent zone (center ring)
|
58 |
Is it possible to assign a different picture on the items zone (inner ring)
|
57 |
How can I change the control's background picture
|
56 |
How can I hide the line being shown around the item form the cursor
|
55 |
Is it possible to highlight items with children, with a different background color, for those arrow picture is shown (items, inner ring)
|
54 |
Is it possible to highlight items with children, with a different background color, for those arrow picture is shown (subitems, outer ring)
|
53 |
Is it possible to highlight the entire item, when cursor hovers it
|
52 |
How can I change the border around the subitems zone, when cursor hovers it ( outer ring )
|
51 |
How can I change the border around the subitems zone, when cursor hovers it ( outer ring )
|
50 |
How can I change the border around the items zone, when cursor hovers it ( inner ring )
|
49 |
How can I change the border around the parent zone, when cursor hovers it ( center ring )
|
48 |
How can I change the border around the items zone ( inner ring )
|
47 |
How can I change the border around the parent zone ( center ring )
|
46 |
How can I change the grid lines in the items zone ( inner ring )
|
45 |
How can I change the border around the slider / custom part of the control
|
44 |
How can I change the grid lines in the subitems zone ( outer ring )
|
43 |
How can I change the border around the subitems (exRadialSubItemsBorder)
|
42 |
How can I change the border around the radial menu (exRadialBorder)
|
41 |
How can I customize the parent part of the control, the center ring/circle
|
40 |
How can I prevent showing the arrow in the outer ring
|
39 |
Is it possible to change the default arrow, that items with children display (method 2)
|
38 |
Is it possible to change the default arrow, that items with children display (method 1)
|
37 |
How can I change the logo image
|
36 |
How can I customize the items part of the control, the inside ring/circle
|
35 |
How can I customize the subitems part of the control, the outside ring/circle
|
34 |
Can I expand/shrink the radial menu relative to its border/shadow
|
33 |
Is it possible to remove/hive the control's shadow
|
32 |
How do I change the color of the control's shadow
|
31 |
How can I evaluate/format an expression using the control
|
30 |
Is it possible to display some extra captions on the control's background
|
29 |
What events the control supports
// Notifies the application once the control fires an event. Procedure OnComEvent Integer llEventID Forward Send OnComEvent llEventID Showln (ComEventParam(Self,-2)) End_Procedure Procedure OnCreate Forward Send OnCreate Send ComBeginUpdate Set ComExpanded to True Variant voItems Get ComItems to voItems Handle hoItems Get Create (RefClass(cComItems)) to hoItems Set pvComObject of hoItems to voItems Set ComToString of hoItems to "Item 1,Item 2,Item 3,Item 4" Send Destroy to hoItems Send ComEndUpdate End_Procedure |
28 |
How can I use/load images/pictures
|
27 |
Does your control supports tooltips (method 2)
|
26 |
Can I change the visual appearance of the control's tooltip
|
25 |
Does your control supports tooltips (method 1)
|
24 |
How can I use/load icons
|
23 |
How can I load items /images to the control, in sub-items zone
|
22 |
How can I load items /images to the control
|
21 |
How can I load items to the control
|
20 |
How do I get the version of the control I am running
|
19 |
How do I select an item
|
18 |
How can I change the item's foreground color (sample 3)
|
17 |
How can I change the item's foreground color (sample 2)
|
16 |
How can I change the item's foreground color (sample 1)
|
15 |
How can I add new items / childrend to the control (method 2)
|
14 |
How can I add new items / childrend to the control (method 1)
|
13 |
How do I enlarge the font (method 2)
|
12 |
How do I enlarge the font (method 1)
|
11 |
How can I expand the control (method 2)
Procedure OnCreate Forward Send OnCreate Set ComAllowToggleExpand to False End_Procedure |
10 |
How can I expand the control (method 1)
Procedure OnCreate Forward Send OnCreate Set ComExpanded to True End_Procedure |
9 |
By default, the control displays 8-pies. How can I change that
|
8 |
How can I prevents expanding / collapsing the radial menu
|
7 |
How can I prevent flickering the item, when user selects it
Procedure OnCreate Forward Send OnCreate Set ComAllowToggleExpand to False Set ComToString to "<c><b>Item 1<b><br><c>no flick<br>,Item 2,Item 3,Item 4,Item 5,Item 6,Item 7,Item 8" Variant voItems Get ComItems to voItems Handle hoItems Get Create (RefClass(cComItems)) to hoItems Set pvComObject of hoItems to voItems Variant voItem Get ComItem of hoItems 0 to voItem Handle hoItem Get Create (RefClass(cComItem)) to hoItem Set pvComObject of hoItem to voItem Set ComBrowseType of hoItem to (|CI$fffffffc + OLEexBrowseItemCustom + OLEexBrowseItemChild) Send Destroy to hoItem Send Destroy to hoItems End_Procedure |
6 |
How do I highlight the sub-item zone when cursor hovers it (method 2)
|
5 |
How do I highlight the sub-item zone when cursor hovers it (method 1)
|
4 |
Is it possible to highlight the entire item when cursor hovers the item
|
3 |
How can I hide the hot line when hovering the cursor
|
2 |
How can I hide the control's shadow
|
1 |
How do I change the control's background color
Procedure OnCreate Forward Send OnCreate Set ComBackColor to (RGB(240,240,249)) End_Procedure |