116 |
ImageSize property on 32 (specifies the size of control' icons)
|
115 |
ImageSize property on 16 (specifies the size of control' icons)
|
114 |
Click event
/* with (this.EXMENUACTIVEXCONTROL1.nativeObject) Click = class::nativeObject_Click endwith */ // Fired when the user clicks an item. function nativeObject_Click(ID) oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject ? Str(ID) return local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.Debug = true oExMenu.BackColor = 0x80000005 oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])" |
113 |
Select event
/* with (this.EXMENUACTIVEXCONTROL1.nativeObject) Select = class::nativeObject_Select endwith */ // Occurs when an item is selected by clicking or by pressing RETURN key. function nativeObject_Select(ID) oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject ? Str(ID) return local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.Debug = true oExMenu.BackColor = 0x80000005 oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])" |
112 |
How can I display a chart/organigram view inside
local oExMenu,var_ChartView,var_Control,var_Menu,var_Node,var_Nodes oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject var_Menu = oExMenu.Items var_Menu.Add("File") var_Control = var_Menu.Add("OrgChart",3).SubControl var_Control.ControlID = "Exontrol.ChartView" var_Control.Width = 128 var_Control.Height = 164 var_Control.Create() var_ChartView = var_Control.Object var_ChartView.IndentSiblingY = 30 var_ChartView.ShowLinksDir = true var_ChartView.PenWidthLink = 2 var_ChartView.LinkColor = 0x0 var_ChartView.AntiAliasing = true var_Nodes = var_ChartView.Nodes // var_Nodes.Add("L1_A",null,"LA").ShowLinkDir = false var_Node = var_Nodes.Add("L1_A",null,"LA") with (oExMenu) TemplateDef = [dim var_Node] TemplateDef = var_Node Template = [var_Node.ShowLinkDir = False] endwith var_Nodes.Add("L1_B",null,"LB") var_Nodes.Add("L2_A","LA","LA2") var_Nodes.Add("L2_B","LB","LB2") var_Menu.Add("Close") oExMenu.Refresh() |
111 |
How do I uncheck the item
|
110 |
How do I get the identifier of the item being clicked / selected
/* with (this.EXMENUACTIVEXCONTROL1.nativeObject) Select = class::nativeObject_Select endwith */ // Occurs when an item is selected by clicking or by pressing RETURN key. function nativeObject_Select(ID) oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject ? "Using ID parameter:" ? Str(ID) ? "Using the EventParam property: " ? Str(oExMenu.EventParam(0)) ? "Using the ExecuteTemplate property: " ? Str(oExMenu.ExecuteTemplate("EventParam(0)")) oExMenu.Template = "EventParam(0)" ? "Using TemplateResult property:" ? Str(oExMenu.TemplateResult) ? "Using TemplateResultN property:" ? Str(oExMenu.TemplateResultN) ? "Using TemplateResultS property:" ? oExMenu.TemplateResultS return local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.Items.ToString = "A[id=10](B[id=20],C[id=30](D[id=40],E[id=50]),F[id=60])" |
109 |
How can I assign an icon to an item using an external ICO file
local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.Template = [HTMLPicture("ico1") = "C:\Program Files\Exontrol\ExMenu\Sample\VC\Sample\res\sample.ico"] // oExMenu.HTMLPicture("ico1") = "C:\Program Files\Exontrol\ExMenu\Sample\VC\Sample\res\sample.ico" oExMenu.Items.Add("<img>ico1:16</img> Caption") oExMenu.Refresh() |
108 |
How can I assign an icon to an item using an external ICO file
|
107 |
How can I assign a tooltip for an item
local oExMenu,var_Menu,var_item oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject var_Menu = oExMenu.Items.Add("Popup",2).SubMenu var_item = var_Menu.Add("ToolTip CTRL + <b>F</b>") var_item.Tooltip = "This is a bit of text that should be displayed when the cursor hovers the item" var_item.TooltipTitle = "Title" oExMenu.Refresh() |
106 |
How can I specify some keys on the right of the item
local oExMenu,var_Menu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject var_Menu = oExMenu.Items.Add("Popup",2).SubMenu var_Menu.Add("File CTRL + <b>F</b>") var_Menu.Add("Left should be a long text") oExMenu.Refresh() |
105 |
How do I specify the item's alignment
local oExMenu,var_Menu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject var_Menu = oExMenu.Items.Add("Popup",2).SubMenu var_Menu.Add("Left<r>Right") var_Menu.Add("Left should be a long text") oExMenu.Refresh() |
104 |
How do I specify the item's alignment
local oExMenu,var_Menu,var_item,var_item1 oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject var_Menu = oExMenu.Items.Add("Popup",2).SubMenu // var_Menu.Add("Center").Alignment = 1 var_item = var_Menu.Add("Center") with (oExMenu) TemplateDef = [dim var_item] TemplateDef = var_item Template = [var_item.Alignment = 1] endwith // var_Menu.Add("Right").Alignment = 2 var_item1 = var_Menu.Add("Right") with (oExMenu) TemplateDef = [dim var_item1] TemplateDef = var_item1 Template = [var_item1.Alignment = 2] endwith var_Menu.Add("Left should be a long text") oExMenu.Refresh() |
103 |
How can I remove the border of the item's text box or an edit control
|
102 |
How can I specify a single border for the item's text box or an edit control
|
101 |
How can I add a checkbox
local oExMenu,var_item oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject var_item = oExMenu.Items.Add("Checked") var_item.Check = true var_item.CheckEffect = false oExMenu.Refresh() |
100 |
How can I specify the shape of the cursor while it hovers an item
local oExMenu,var_Menu,var_item oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject var_Menu = oExMenu.Items.Add("Popup",2).SubMenu // var_Menu.Add("Item 1").Cursor = "exHelp" var_item = var_Menu.Add("Item 1") with (oExMenu) TemplateDef = [dim var_item] TemplateDef = var_item Template = [var_item.Cursor = "exHelp"] endwith var_Menu.Add("Item 2") oExMenu.Refresh() |
99 |
How can I specify the width for text box or an edit control
|
98 |
How can I show or hide an item
local oExMenu,var_Menu,var_item,var_item1 oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject var_item = oExMenu.Items.Add("Popup",2) var_Menu = var_item.SubMenu var_Menu.Add("Visible") // var_Menu.Add("Hidden").Visible = false var_item1 = var_Menu.Add("Hidden") with (oExMenu) TemplateDef = [dim var_item1] TemplateDef = var_item1 Template = [var_item1.Visible = False] endwith oExMenu.Refresh() |
97 |
Is there any function to display the popup menu up not down
|
96 |
How can I specify the item's foreground color
local oExMenu,var_Menu,var_item oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject var_Menu = oExMenu.Items.Add("Popup",2).SubMenu var_Menu.Add("Item <fgcolor=FF0000>1</fgcolor>") // var_Menu.Add("Item 2").Caption = "Item <fgcolor=FF0000>2</fgcolor>" var_item = var_Menu.Add("Item 2") with (oExMenu) TemplateDef = [dim var_item] TemplateDef = var_item Template = [var_item.Caption = "Item <fgcolor=FF0000>2</fgcolor>"] endwith oExMenu.Refresh() |
95 |
How can I specify the item's foreground color
local oExMenu,var_Menu,var_item oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject var_Menu = oExMenu.Items.Add("Popup",2).SubMenu // var_Menu.Add("Item 1").ForeColor = 0xff var_item = var_Menu.Add("Item 1") with (oExMenu) TemplateDef = [dim var_item] TemplateDef = var_item Template = [var_item.ForeColor = 255] endwith var_Menu.Add("Item 2") oExMenu.Refresh() |
94 |
How can I specify the item's background color
local oExMenu,var_Menu,var_item oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject var_Menu = oExMenu.Items.Add("Popup",2).SubMenu // var_Menu.Add("Item 1").BackColor = 0xff var_item = var_Menu.Add("Item 1") with (oExMenu) TemplateDef = [dim var_item] TemplateDef = var_item Template = [var_item.BackColor = 255] endwith var_Menu.Add("Item 2") oExMenu.Refresh() |
93 |
How can I add an item with a text box or an edit control
|
92 |
How can I add an item with a text box or an edit control
local oExMenu,var_Menu,var_item,var_item1 oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject var_Menu = oExMenu.Items.Add("Popup",2).SubMenu // var_Menu.Add("Edit 1").AllowEdit = true var_item = var_Menu.Add("Edit 1") with (oExMenu) TemplateDef = [dim var_item] TemplateDef = var_item Template = [var_item.AllowEdit = True] endwith // var_Menu.Add("Edit 2").AllowEdit = true var_item1 = var_Menu.Add("Edit 2") with (oExMenu) TemplateDef = [dim var_item1] TemplateDef = var_item1 Template = [var_item1.AllowEdit = True] endwith oExMenu.Refresh() |
91 |
How can I add a bullet
local oExMenu,var_item oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject var_item = oExMenu.Items.Add("Bullet") var_item.Check = true var_item.Bullet = true oExMenu.Refresh() |
90 |
How can I add a checkbox
local oExMenu,var_item oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject // oExMenu.Items.Add("Checked").Check = true var_item = oExMenu.Items.Add("Checked") with (oExMenu) TemplateDef = [dim var_item] TemplateDef = var_item Template = [var_item.Check = True] endwith oExMenu.Refresh() |
89 |
How can I enable or disable an item
local oExMenu,var_item oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject // oExMenu.Items.Add("Disabled").Enabled = false var_item = oExMenu.Items.Add("Disabled") with (oExMenu) TemplateDef = [dim var_item] TemplateDef = var_item Template = [var_item.Enabled = False] endwith oExMenu.Refresh() |
88 |
How can I display an icon
local oExMenu,var_item oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") // oExMenu.Items.Add("A").Image = 1 var_item = oExMenu.Items.Add("A") with (oExMenu) TemplateDef = [dim var_item] TemplateDef = var_item Template = [var_item.Image = 1] endwith oExMenu.Refresh() |
87 |
How can I specify the item's identifier
local oExMenu,var_item oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject // oExMenu.Items.Add("A").ID = 1000 var_item = oExMenu.Items.Add("A") with (oExMenu) TemplateDef = [dim var_item] TemplateDef = var_item Template = [var_item.ID = 1000] endwith oExMenu.Refresh() |
86 |
How can I specify the item's identifier
|
85 |
How can I assign an extra data to an item
|
84 |
How can I underline an item
|
83 |
How can I underline an item
|
82 |
How can I display as strikeout an item
|
81 |
How can I display as strikeout an item
|
80 |
How can I display as italic an item
|
79 |
How can I display as italic an item
|
78 |
How do I bold an item
|
77 |
How do I bold an item
|
76 |
How do I change the item's caption
|
75 |
How can I speciy the picture on the drop down menu
|
74 |
How can I speciy the number of visible items
|
73 |
How can I speciy the shape of the cursor when it hovers the menu
|
72 |
How can I add items
local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])" |
71 |
How I can remove an item
|
70 |
How I can get the number or the count of the items in the menu
|
69 |
How I can clear a menu
|
68 |
How do I specify to close an ActiveX item when user clicks it
|
67 |
How can I access the properties and methods for an ActiveX item
|
66 |
I can't see the ActiveX item
|
65 |
How can I specify the runtime license key for an ActiveX item
|
64 |
How can I specify the width and the height for an ActiveX item
local oExMenu,var_Control oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject var_Control = oExMenu.Items.Add("Calendar",3).SubControl var_Control.ControlID = "MSCal.Calendar" var_Control.Width = 256 var_Control.Height = 256 var_Control.Create() oExMenu.Refresh() |
63 |
How can I select a date
local oExMenu,var_Control,var_DTPicker,var_Menu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject var_Menu = oExMenu.Items.Add("Popup",2).SubMenu var_Control = var_Menu.Add("Select a date",3).SubControl var_Control.ControlID = "MSComCtl2.DTPicker" var_Control.Width = 128 var_Control.Height = 22 var_Control.Create() var_DTPicker = var_Control.Object var_DTPicker.Format = 3 var_DTPicker.CustomFormat = "dd-MM-yyy" var_DTPicker.Refresh() oExMenu.Refresh() |
62 |
How can I add an ActiveX item
local oExMenu,var_Control oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject var_Control = oExMenu.Items.Add("Calendar",3).SubControl var_Control.ControlID = "MSCal.Calendar" var_Control.Create() oExMenu.Refresh() |
61 |
How can I add a separator item
local oExMenu,var_Menu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject var_Menu = oExMenu.Items.Add("Popup",2).SubMenu var_Menu.Add("Item 1") var_Menu.Add("",1) var_Menu.Add("Item 2") oExMenu.Refresh() |
60 |
How can I add a popup or a submenu
local oExMenu,var_Menu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject var_Menu = oExMenu.Items.Add("Popup",2).SubMenu var_Menu.Add("Item 1") var_Menu.Add("Item 2") oExMenu.Refresh() |
59 |
How can I add a new item
local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.Items.Add("Item 1") oExMenu.Refresh() |
58 |
How I can assign a picture or an icon to an item
local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExMenu.Template = [HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"] // oExMenu.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif" oExMenu.Template = [ItemHeight(2) = 34] // oExMenu.ItemHeight(2) = 34 oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])" oExMenu.Items.item(10).Caption = "<img>pic1</img> <b>1</b>" oExMenu.Items.item(60).Caption = "T <img>1</img> <img>2</img> and so on " oExMenu.Refresh() |
57 |
How I can assign a picture to an item
local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.Template = [HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif"] // oExMenu.HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif" oExMenu.Template = [HTMLPicture("pic2") = "c:\exontrol\images\auction.gif"] // oExMenu.HTMLPicture("pic2") = "c:\exontrol\images\auction.gif" oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])" oExMenu.Items.item(10).Caption = "<img>pic1</img> <b>1</b>" oExMenu.Items.item(60).Caption = "<img>pic2</img> <b>2</b>" oExMenu.Refresh() |
56 |
How do I call your x-script language
|
55 |
How do I change the shape of the cursor whether it hovers the control
|
54 |
How do I specify whether the item gets selected whether the user presses or releases the mouse
|
53 |
How do I change the picture or icon for the chevrons
local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") oExMenu.Template = [ScrollImage(True) = 1] // oExMenu.ScrollImage(true) = 1 oExMenu.Template = [ScrollImage(False) = 2] // oExMenu.ScrollImage(false) = 2 oExMenu.AllowChevron = 1 oExMenu.Items.ToString = "Popup[id=10](Item 1[id=20],[sep][id=30],Item 2[id=40]),Popup[id=10](Item 1[id=20],[sep][id=30],Item 2[id=40]),Popup[id=10](Item 1[id=20],[sep][id=30],Item 2[id=40]),Popup[id=10](Item 1[id=20],[sep][id=30],Item 2[id=40]),Popup[id=10](Item 1[id=20],[sep][id=30],Item 2[id=40]),Popup[id=10](Item 1[id=20],[sep][id=30],Item 2[id=40]),Popup[id=10](Item 1[id=20],[sep][id=30],Item 2[id=40]),Popup[id=10](Item 1[id=20],[sep][id=30],Item 2[id=40]),Popup[id=10](Item 1[id=20],[sep][id=30],Item 2[id=40]),Popup[id=10](Item 1[id=20],[sep][id=30],Item 2[id=40])" |
52 |
How do I specify the height for items
local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.Template = [ItemHeight(2) = 34] // oExMenu.ItemHeight(2) = 34 oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])" |
51 |
How do I change the picture or icon for the chevrons
|
50 |
How do I disable chevrons
|
49 |
How do I allow chevrons
|
48 |
How do I allow chevrons
|
47 |
How do I show directly the drop down menu, without scrolling
|
46 |
How can I change the visual appearance for for a top level item, when the Appearance property is Flat
local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oExMenu.Template = [Background(2) = 16777216] // oExMenu.Background(2) = 0x1000000 oExMenu.Appearance = 1 oExMenu.Border = 1 oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])" |
45 |
How can I change the visual appearance for an item, when the Appearance property is Button
local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oExMenu.Template = [Background(1) = 16777216] // oExMenu.Background(1) = 0x1000000 oExMenu.Appearance = 2 oExMenu.Border = 1 oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])" |
44 |
Can I change the visual appearance for separator items
local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oExMenu.Template = [Background(0) = 16777216] // oExMenu.Background(0) = 0x1000000 oExMenu.Items.ToString = "Popup[id=10](Item 1[id=20],[sep][id=30],Item 2[id=40])" |
43 |
Can I change the forecolor for the tooltip
local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.ToolTipDelay = 1 oExMenu.ToolTipWidth = 364 oExMenu.Template = [Background(66) = 255] // oExMenu.Background(66) = 0xff oExMenu.Items.ToString = "ToolTip [id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50])" oExMenu.Items.item(10).Tooltip = "Click the <b>ToolTip</b> and so the drop down menu will be shown" oExMenu.Refresh() |
42 |
Can I change the background color for the tooltip
local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.ToolTipDelay = 1 oExMenu.ToolTipWidth = 364 oExMenu.Template = [Background(65) = 255] // oExMenu.Background(65) = 0xff oExMenu.Items.ToString = "ToolTip [id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50])" oExMenu.Items.item(10).Tooltip = "Click the <b>ToolTip</b> and so the drop down menu will be shown" oExMenu.Refresh() |
41 |
Can I change the default border of the tooltip, using your EBN files
local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.ToolTipDelay = 1 oExMenu.ToolTipWidth = 364 oExMenu.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oExMenu.Template = [Background(64) = 16777216] // oExMenu.Background(64) = 0x1000000 oExMenu.Items.ToString = "ToolTip [id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50])" oExMenu.Items.item(10).Tooltip = "Click the <b>ToolTip</b> and so the drop down menu will be shown" oExMenu.Refresh() |
40 |
Can I change the font for the tooltip
|
39 |
I've seen that the width of the tooltip is variable. Can I make it larger
|
38 |
How do I let the tooltip being displayed longer
|
37 |
How do I disable showing the tooltip for all control
|
36 |
How do I show the tooltip quicker
|
35 |
How do I open the menu as user clicks the menu
|
34 |
How do I open the menu as cursor hovers the menu bar
|
33 |
Can I make the menu partialy visible
|
32 |
How do I remove or clear the accelerator keys
local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.Debug = true oExMenu.Items.ToString = "Item &1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])" oExMenu.AddAcelerator(10,49,false,true,false) |
31 |
How do I add or assign an accelerator key to an item
|
30 |
How can I load the items from a file
local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject |
29 |
How can I save the items to a file
local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject |
28 |
How do I put a picture on the center of the control
local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.Picture = oExMenu.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oExMenu.PictureDisplay = 17 |
27 |
How do I resize/stretch a picture on the control's background
local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.Picture = oExMenu.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oExMenu.PictureDisplay = 49 |
26 |
How do I put a picture on the control's center right bottom side
local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.Picture = oExMenu.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oExMenu.PictureDisplay = 34 |
25 |
How do I put a picture on the control's center left bottom side
local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.Picture = oExMenu.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oExMenu.PictureDisplay = 32 |
24 |
How do I put a picture on the control's center top side
local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.Picture = oExMenu.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oExMenu.PictureDisplay = 1 |
23 |
How do I put a picture on the control's right top corner
local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.Picture = oExMenu.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oExMenu.PictureDisplay = 2 |
22 |
How do I put a picture on the control's left top corner
local oExMenu oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.Picture = oExMenu.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oExMenu.PictureDisplay = 0 |
21 |
How do I put a picture on the control's background
|
20 |
Is there any function to display the item's identifiers
|
19 |
How do I find an item giving its name
local oExMenu,var_item oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])" // oExMenu.item("Item 1").Bold = true var_item = oExMenu.item("Item 1") with (oExMenu) TemplateDef = [dim var_item] TemplateDef = var_item Template = [var_item.Bold = True] endwith oExMenu.Refresh() |
18 |
How do I find an item giving its identifier
local oExMenu,var_item oExMenu = form.EXMENUACTIVEXCONTROL1.nativeObject oExMenu.Items.ToString = "Item 1[id=10](SubItem 1[id=20](SubItem 1.1[id=30],SubItem 1.2[id=40]),SubItem 2[id=50]),Item 2[id=60](SubItem 1[id=70],SubItem 2[id=80])" // oExMenu.item(10).Bold = true var_item = oExMenu.item(10) with (oExMenu) TemplateDef = [dim var_item] TemplateDef = var_item Template = [var_item.Bold = True] endwith oExMenu.Refresh() |
17 |
How do I enable or disable the control
|