21 |
How do I specify that an object should be moved not resized
With SplitBar1 .ObjectsLT = "Command1" .ObjectsRB = "Command1" End With |
20 |
I've noticed some margins that are not painted. How can I prevent/remove that
With SplitBar1 .BorderWidth = 0 .BorderHeight = 0 .SplitBackColor = RGB(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 SplitBar1 .ObjectsLT = "Command1" .ObjectsRB = "Command2" .MoveOnDrop = False End With |
15 |
How do I know what events your control supports
|
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 SplitBar1_Drag(ByVal Position As Long) With SplitBar1 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 SplitBar1_DragEnd(ByVal Position As Long,ByVal Cancel As Boolean) With SplitBar1 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 SplitBar1 .ObjectsLT = "Command1" .ObjectsRB = "Command2" .MoveTo .Max End With |
11 |
How do I programmatically move the split bar, to the left/top most position
With SplitBar1 .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 SplitBar1_Show(ByVal Object As Variant,ByVal Visible As Boolean) With SplitBar1 Debug.Print( Object ) Debug.Print( Visible ) End With End Sub With SplitBar1 .ObjectsLT = "Command1" .ObjectsRB = "Command2" .HideOnLimit = False End With |
8 |
How can I specify the limit to move the splitbar (hard coded value)
With SplitBar1 .LimitLT = "32D" .LimitRB = "32D" End With |
7 |
How can I specify the limit to move the splitbar (percent)
With SplitBar1 .LimitLT = "50%" .LimitRB = "50%" End With |
6 |
How do I change the split bar's visual appearance using your EBN files (BASE64)
With SplitBar1 .BeginUpdate .BackColor = RGB(255,255,255) .VisualAppearance.Add 1,"gBFLBCJwBAEHhEJAAEhABV0GACAADACAxSDEMQBQKAAzQFAYbhgHCGAAGUYBRgmFgAQhFcZQSKUOQTDKMIziaQIRDINQlSTJcQxHJEExZCKLACkKKwMgkEYfTLGUxQG" & _ "AsXBgEoWRjkAYJADYBIJDCME7yHBJDSdGaYIRBGCZbiGOYxQjKMqwJJUfBLEAZKLnGRIbpOA5VSBVcT1VZlPTBHqxaxhED6SjaOJqRpcERTeJobT1FgWRpqUYRSwMMJq" & _ "WjCNhABKsBgdO4AKpffIwAxNf4XSBIAIQSSBUjGOg6TiMWB4JRqOxCEzpUZDNBIUQTRoAJrgOCAYhcZJVXhAeTbXibZZ8RzgCj4Lg+AQ5cLHbxyPJHZxlHadZ7nOYPTh" & _ "XFMLBImudA7MEOQjiuFh1ngDQ+C6V4Thw/Z4B0eRnleMJXm6cp8DoHhzD+MZ0jWe52EkP4lC+cZNn4f5fkKFZ6BIXYSjoBgciCBxmAEP4gkgNgOgMIAXGQb4EkUWBVlk" & _ "O5hggPgaD+IYDj2WQTmICBUFWBZhhgbgOgcXYRC4KoCAcJxkieC5iGgOgvCmXYYjGdwtF+F5tnwOojkidgBgDGpCEIfRemGLZxhGRBnk2dR3l4CQWEgdAeCGJZpHUXxZ" & _ "D2T4Sl2ZptlyEZdkkZZLHMXwXEoXhyFuY5JkWCIiCcFZHDwHRTi0UQABAECAg" .SplitBackColor = &H1000000 .EndUpdate End With |
5 |
How do I change the split bar's visual appearance using your EBN files (file)
With SplitBar1 .BeginUpdate .BackColor = RGB(255,255,255) .VisualAppearance.Add 1,"C:\Program Files\Exontrol\ExSplitBar\Sample\EBN\vthumb.ebn" .SplitBackColor = &H1000000 .EndUpdate End With |
4 |
How do I specify the objects to be resized to left/top or right/bottom side of the split bar (method runtime)
With SplitBar1 .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 SplitBar1 .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
With SplitBar1 .SplitBackColor = RGB(0,255,0) End With |
1 |
How do I change the control's background color
With SplitBar1 .BackColor = RGB(255,255,0) .BorderWidth = 4 .BorderHeight = 4 End With |