21 |
How do I specify that an object should be moved not resized
with thisform.SplitBar1 .ObjectsLT = "Command1" .ObjectsRB = "Command1" endwith |
20 |
I've noticed some margins that are not painted. How can I prevent/remove that
with thisform.SplitBar1 .BorderWidth = 0 .BorderHeight = 0 .SplitBackColor = RGB(0,0,0) endwith |
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
|
15 |
How do I know what events your control supports
*** Event event - Notifies the application once the control fires an event. *** LPARAMETERS EventID with thisform.SplitBar1 DEBUGOUT( .EventParam(-2) ) endwith |
14 |
Is it possible to get notified once the user moves the split bar
*** Drag event - Notifies that the user drags the split bar. *** LPARAMETERS Position with thisform.SplitBar1 DEBUGOUT( "New Position" ) DEBUGOUT( Position ) endwith |
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. *** LPARAMETERS Position,Cancel with thisform.SplitBar1 DEBUGOUT( "New Position" ) DEBUGOUT( Position ) endwith |
12 |
How do I programmatically move the split bar, to the right/bottom most position
with thisform.SplitBar1 .ObjectsLT = "Command1" .ObjectsRB = "Command2" .MoveTo(.Max) endwith |
11 |
How do I programmatically move the split bar, to the left/top most position
with thisform.SplitBar1 .ObjectsLT = "Command1" .ObjectsRB = "Command2" .MoveTo(.Min) endwith |
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
|
8 |
How can I specify the limit to move the splitbar (hard coded value)
with thisform.SplitBar1 .LimitLT = "32D" .LimitRB = "32D" endwith |
7 |
How can I specify the limit to move the splitbar (percent)
with thisform.SplitBar1 .LimitLT = "50%" .LimitRB = "50%" endwith |
6 |
How do I change the split bar's visual appearance using your EBN files (BASE64)
with thisform.SplitBar1 .BeginUpdate .BackColor = RGB(255,255,255) var_s = "gBFLBCJwBAEHhEJAAEhABV0GACAADACAxSDEMQBQKAAzQFAYbhgHCGAAGUYBRgmFgAQhFcZQSKUOQTDKMIziaQIRDINQlSTJcQxHJEExZCKLACkKKwMgkEYfTLGUxQGA" var_s = var_s + "sXBgEoWRjkAYJADYBIJDCME7yHBJDSdGaYIRBGCZbiGOYxQjKMqwJJUfBLEAZKLnGRIbpOA5VSBVcT1VZlPTBHqxaxhED6SjaOJqRpcERTeJobT1FgWRpqUYRSwMMJqW" var_s = var_s + "jCNhABKsBgdO4AKpffIwAxNf4XSBIAIQSSBUjGOg6TiMWB4JRqOxCEzpUZDNBIUQTRoAJrgOCAYhcZJVXhAeTbXibZZ8RzgCj4Lg+AQ5cLHbxyPJHZxlHadZ7nOYPThX" var_s = var_s + "FMLBImudA7MEOQjiuFh1ngDQ+C6V4Thw/Z4B0eRnleMJXm6cp8DoHhzD+MZ0jWe52EkP4lC+cZNn4f5fkKFZ6BIXYSjoBgciCBxmAEP4gkgNgOgMIAXGQb4EkUWBVlkO" var_s = var_s + "5hggPgaD+IYDj2WQTmICBUFWBZhhgbgOgcXYRC4KoCAcJxkieC5iGgOgvCmXYYjGdwtF+F5tnwOojkidgBgDGpCEIfRemGLZxhGRBnk2dR3l4CQWEgdAeCGJZpHUXxZD" var_s = var_s + "2T4Sl2ZptlyEZdkkZZLHMXwXEoXhyFuY5JkWCIiCcFZHDwHRTi0UQABAECAg" .VisualAppearance.Add(1,var_s) .SplitBackColor = 0x1000000 .EndUpdate endwith |
5 |
How do I change the split bar's visual appearance using your EBN files (file)
with thisform.SplitBar1 .BeginUpdate .BackColor = RGB(255,255,255) .VisualAppearance.Add(1,"C:\Program Files\Exontrol\ExSplitBar\Sample\EBN\vthumb.ebn") .SplitBackColor = 0x1000000 .EndUpdate endwith |
4 |
How do I specify the objects to be resized to left/top or right/bottom side of the split bar (method runtime)
with thisform.SplitBar1 .AddObjectLT("Command1") .AddObjectRB("Command2") .AddObjectRB("SplitBar2") .AddObjectRB("Command3") endwith |
3 |
How do I specify the objects to be resized to left/top or right/bottom side of the split bar (method design)
with thisform.SplitBar1 .ObjectsLT = "Command1" .ObjectsRB = "Command2,SplitBar2,Command3" .AddObjectLT("Command1") .AddObjectRB("Command2") .AddObjectRB("SplitBar2") .AddObjectRB("Command3") endwith |
2 |
How do I change the split bar's color
with thisform.SplitBar1 .SplitBackColor = RGB(0,255,0) endwith |
1 |
How do I change the control's background color
with thisform.SplitBar1 .BackColor = RGB(255,255,0) .BorderWidth = 4 .BorderHeight = 4 endwith |