21 |
How do I specify that an object should be moved not resized
With Exsplitbar1 .ObjectsLT = "Command1" .ObjectsRB = "Command1" End With |
20 |
I've noticed some margins that are not painted. How can I prevent/remove that
With Exsplitbar1 .BorderWidth = 0 .BorderHeight = 0 .SplitBackColor = Color.FromArgb(0,0,0) End With |
19 |
How can I change the shape of the cursor
|
18 |
How can I display a tooltip when cursor hovers the split bar (pictures)
|
17 |
How can I display a tooltip when cursor hovers the split bar (images)
|
16 |
Is it possible to move the associated objects once the user drags the split bar, not just when it ends
With Exsplitbar1 .ObjectsLT = "Command1" .ObjectsRB = "Command2" .MoveOnDrop = False End With |
15 |
How do I know what events your control supports
' Event event - Notifies the application once the control fires an event. Private Sub Exsplitbar1_Event(ByVal sender As System.Object,ByVal EventID As Integer) Handles Exsplitbar1.Event With Exsplitbar1 Debug.Print( .get_EventParam(-2) ) End With End Sub |
14 |
Is it possible to get notified once the user moves the split bar
' Drag event - Notifies that the user drags the split bar. Private Sub Exsplitbar1_Drag(ByVal sender As System.Object,ByVal Position As Integer) Handles Exsplitbar1.Drag With Exsplitbar1 Debug.Print( "New Position" ) Debug.Print( Position ) End With End Sub |
13 |
How do I get notified once the user drop the split bar to a new position
' DragEnd event - Occurs once the user ends dragging the split bar. Private Sub Exsplitbar1_DragEnd(ByVal sender As System.Object,ByVal Position As Integer,ByVal Cancel As Boolean) Handles Exsplitbar1.DragEnd With Exsplitbar1 Debug.Print( "New Position" ) Debug.Print( Position ) End With End Sub |
12 |
How do I programmatically move the split bar, to the right/bottom most position
With Exsplitbar1 .ObjectsLT = "Command1" .ObjectsRB = "Command2" .MoveTo(.Max) End With |
11 |
How do I programmatically move the split bar, to the left/top most position
With Exsplitbar1 .ObjectsLT = "Command1" .ObjectsRB = "Command2" .MoveTo(.Min) End With |
10 |
How do I programmatically move the split bar
|
9 |
I've noticed that the objects are hidden, when the split bar is closed to the limit. Is it possible to prevent that
' Show event - Occurs when an object requires to be shown or hidden. Private Sub Exsplitbar1_Show(ByVal sender As System.Object,ByVal Obj As Object,ByVal Visible As Boolean) Handles Exsplitbar1.Show With Exsplitbar1 Debug.Print( Obj ) Debug.Print( Visible ) End With End Sub With Exsplitbar1 .ObjectsLT = "Command1" .ObjectsRB = "Command2" .HideOnLimit = False End With |
8 |
How can I specify the limit to move the splitbar (hard coded value)
With Exsplitbar1 .LimitLT = "32D" .LimitRB = "32D" End With |
7 |
How can I specify the limit to move the splitbar (percent)
With Exsplitbar1 .LimitLT = "50%" .LimitRB = "50%" End With |
6 |
How do I change the split bar's visual appearance using your EBN files (BASE64)
|
5 |
How do I change the split bar's visual appearance using your EBN files (file)
|
4 |
How do I specify the objects to be resized to left/top or right/bottom side of the split bar (method runtime)
With Exsplitbar1 .AddObjectLT("Command1") .AddObjectRB("Command2") .AddObjectRB("SplitBar2") .AddObjectRB("Command3") End With |
3 |
How do I specify the objects to be resized to left/top or right/bottom side of the split bar (method design)
With Exsplitbar1 .ObjectsLT = "Command1" .ObjectsRB = "Command2,SplitBar2,Command3" .AddObjectLT("Command1") .AddObjectRB("Command2") .AddObjectRB("SplitBar2") .AddObjectRB("Command3") End With |
2 |
How do I change the split bar's color
|
1 |
How do I change the control's background color
|