100 |
ImageSize property on 32 (specifies the size of control' icons/images/check-boxes/radio-buttons)
|
99 |
ImageSize property on 16 (default) (specifies the size of control' icons)
|
98 |
I am trying to replicate the green slider image example you have in the helpfile under the "property Slider.ShowThumbProgress as Boolean" help topic
' Change event - Occurs when the value of the control is changed. Private Sub Exslider1_Change(ByVal sender As System.Object) Handles Exslider1.Change With Exslider1 .set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,.Value) End With End Sub With Exslider1 .BeginUpdate() .VisualAppearance.Add(1,"gBFLBCJwBAEHhEJAAChABbEGACAADACAxRDAMgBQKAAzQFAYaBgGKGAAGIZRVgmFgAQhFcZQSKUOQTDKMIziaQAChwOYlQKMYxRCKYZhpCIZBwGCIYWiiIYiQKCUIiD" & _ "BMIxseCgAAfSg5YiACIJFAaJhnIapZDKGKQCqASAyCI2UoaDZCIoQTLUBx5AaEAwicQKTjiIiQOgjdoWU46HIhNq3bauCybRoOdj8QKdbhHMbFdz0Oq/cBvbAzVbvBqH" & _ "QKXLalVhWGYXRrIMbyIqnZxXFoDEQ1ZBZTjeNY5T7PNBIJ5tEyWKTTC4MeoaVpOV5dVrYHj2LY4DCtUgrbYJe47Xq+eZ1W6gOBeDZddZLP7HbZuHDbYJfBSCADkd65To" & _ "XAOHZEmUcg5HwXpPDeLZQm2dQ7ByTh3A+P5im0b58n6HwnF+KZpnCew8l6boPiOE5xnodh9n8XovAuW57H6HZHl2YB+l6J5Zl4fgeBeQgHgCXZICmfR8h+eAhlodxgng" & _ "SgNgEIAoBYE4DhwF55nmBYgGgVgMHSYYIC4GoAB4OIZnOCJfkgdgQgeYpIFILoICGOIWA8DgNFCVg4g6I4Ym4PoPGQAJUnGEJkEQDBQDaBJJBwToSiSQxqEuEgklEOJ0" & _ "hSZVEGcN5GGkXhZhYJYpHYXIXkYZoViYAAHmOEB8hkR5BnSYwemaCY2GaG4HkYWYXAACRjiSFYdEkUhUmkJQngmdh2h+CRVl0RAAAqQ40iuIRoHoGoIiKaIqWwIIXoWA" & _ "SAg==") .ShowThumbProgress = True .set_VisiblePart(exontrol.EXSLIDERLib.PartEnum.exBackgroundPart,False) .TickStyle = exontrol.EXSLIDERLib.TickStyleEnum.exNoTicks .Value = 3 .set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumb,&H1000000) .EndUpdate() End With |
97 |
How can I change the position of the control's tooltip
With Exslider1 .ToolTipTitle = "Title" .ToolTipText = "This is just a text that's displayed when the user clicks and drags the thumb to a new position" .ToolTipX = "value + 18" .ToolTipY = "value + 18" End With |
96 |
How can I display the value in reverse order or from bottom to top
|
95 |
How can I display the value in reverse order or from right to left
|
94 |
I need only to change the knob of the slider with a picture. Is it possible
With Exslider1 .BeginUpdate() .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .LabelTick = "value = vmin ? '<b>min<br>'+value : (value = vmax ? '<b>max<br>'+value : ( value=current ? '<b>' + value : '<fgcolor=808080>' +" & _ " value ) )" .Minimum = -100 .Maximum = 100 .TickFrequency = 10 .set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exHSThumb,&H1000000) .ThumbSize = 40 .EndUpdate() End With |
93 |
Is it possible to print the control's Value on the thumb
' Change event - Occurs when the value of the control is changed. Private Sub Exslider1_Change(ByVal sender As System.Object) Handles Exslider1.Change With Exslider1 .set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,.Value) End With End Sub With Exslider1 .TickStyle = exontrol.EXSLIDERLib.TickStyleEnum.exBoth .ThumbSize = 48 .TickFrequency = 0 .Value = 5 End With |
92 |
How can I display the value on the thumb
' Change event - Occurs when the value of the control is changed. Private Sub Exslider1_Change(ByVal sender As System.Object) Handles Exslider1.Change With Exslider1 .set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,.ValueF) End With End Sub With Exslider1 .BeginUpdate() .AllowFloat = True .MinimumF = -3.25 .MaximumF = 3.25 .SmallChangeF = 0.25 .ThumbSize = 48 .ValueF = 0 .TickStyle = exontrol.EXSLIDERLib.TickStyleEnum.exBoth .TickFrequencyF = 0 .EndUpdate() End With |
91 |
How can I display a different text than the slider's value
|
90 |
How can I show values for selec range only
With Exslider1 .SelectRange = True .SelStart = 1 .SelLength = 2 .LabelTick = "value=current ? '<b><font ;10>' + value : ( value>=smin and value<=smax ? '<fgcolor=0000FF>' + value : '' ) " End With |
89 |
Is it possible to display min max value
|
88 |
How can I show the value for current value only
|
87 |
Is it possible to show the value using the tooltip
' Change event - Occurs when the value of the control is changed. Private Sub Exslider1_Change(ByVal sender As System.Object) Handles Exslider1.Change With Exslider1 .ToolTipText = .Value End With End Sub |
86 |
Is it possible to show labels for ticks
|
85 |
How can I change the tooltip's border using your EBN files with a different color
|
84 |
Can I change the color for the control's border
With Exslider1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .Appearance = &H10000f8 Or exontrol.EXSLIDERLib.AppearanceEnum.Bump Or exontrol.EXSLIDERLib.AppearanceEnum.Sunken End With |
83 |
How can I display a character from a specified font ( for vertical alignment )
With Exslider1 .ThumbSize = 96 .set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"<img>-1</img><font Webdings;10>a</font>") .Orientation = exontrol.EXSLIDERLib.OrientationEnum.exVertical End With |
82 |
How can I display a character from a specified font
With Exslider1 .ThumbSize = 96 .set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"<font Webdings;10>a</font>") End With |
81 |
When I have a slider in vertical orientation, how can I get the caption horizontal
|
80 |
Does your control support floating points
' Change event - Occurs when the value of the control is changed. Private Sub Exslider1_Change(ByVal sender As System.Object) Handles Exslider1.Change With Exslider1 Debug.Print( .ValueF ) End With End Sub With Exslider1 .BeginUpdate() .AllowFloat = True .MinimumF = -3 .MaximumF = 3 .SmallChangeF = 0.5 .LargeChangeF = 1 .TickFrequencyF = .SmallChangeF .ValueF = 0 .EndUpdate() End With |
79 |
How do I change the control's border, using your EBN files
With Exslider1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .Appearance = &H1000000 End With |
78 |
How can I change the color of the selected range in the control
With Exslider1 .Orientation = exontrol.EXSLIDERLib.OrientationEnum.exVertical .SelectRange = True .SelStart = 2 .SelLength = 2 .Value = 1 .set_Background(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSSel,Color.FromArgb(255,0,0)) End With |
77 |
How can I change the color of the selection in the control
With Exslider1 .SelectRange = True .SelStart = 2 .SelLength = 2 .Value = 1 .set_Background(exontrol.EXSLIDERLib.BackgroundPartEnum.exHSSel,Color.FromArgb(255,0,0)) End With |
76 |
How can I change the visual appearance of the selected range in the control
With Exslider1 .Orientation = exontrol.EXSLIDERLib.OrientationEnum.exVertical .SelectRange = True .SelStart = 2 .SelLength = 2 .Value = 1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSSel,&H1000000) .set_Caption(exontrol.EXSLIDERLib.PartEnum.exSelPart,"selection") End With |
75 |
How can I change the visual appearance of the selection in the control
With Exslider1 .SelectRange = True .SelStart = 2 .SelLength = 2 .Value = 1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exHSSel,&H1000000) .set_Caption(exontrol.EXSLIDERLib.PartEnum.exSelPart,"selection") End With |
74 |
Is there any option to select a range in the control, or to highlight my selection
With Exslider1 .SelectRange = True .SelStart = 2 .SelLength = 2 .Value = 1 End With |
73 |
How can I specify the upper and lower parts using gradient colors
With Exslider1 .Value = 3 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn") .set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exHSLower,&H1000000) .set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exHSUpper,&H2000000) End With |
72 |
How can I specify the upper and lower parts using gradient colors
With Exslider1 .Orientation = exontrol.EXSLIDERLib.OrientationEnum.exVertical .Value = 3 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn") .set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSLower,&H1000000) .set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSUpper,&H2000000) End With |
71 |
How can I change the color of the progress bar
With Exslider1 .ShowThumbProgress = True .set_VisiblePart(exontrol.EXSLIDERLib.PartEnum.exBackgroundPart,False) .TickStyle = exontrol.EXSLIDERLib.TickStyleEnum.exNoTicks .Value = 3 .set_Background(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumb,Color.FromArgb(255,0,0)) End With |
70 |
How can I change the visual appearance of the progress bar using your EBN files
With Exslider1 .ShowThumbProgress = True .set_VisiblePart(exontrol.EXSLIDERLib.PartEnum.exBackgroundPart,False) .TickStyle = exontrol.EXSLIDERLib.TickStyleEnum.exNoTicks .Value = 3 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn") .VisualAppearance.Add(3,"c:\exontrol\images\hot.ebn") .set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumb,&H1000000) .set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumbP,&H2000000) .set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumbD,&H1000000) .set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumbH,&H3000000) End With |
69 |
How can I show a progress bar
With Exslider1 .ShowThumbProgress = True .set_VisiblePart(exontrol.EXSLIDERLib.PartEnum.exBackgroundPart,False) .TickStyle = exontrol.EXSLIDERLib.TickStyleEnum.exNoTicks .Value = 3 End With |
68 |
May I change the color of the ticks
|
67 |
How do I specify the frequency of the ticks on the control
|
66 |
How can I show the tickers on bottom/right side only
|
65 |
How can I show the tickers on top/left side only
|
64 |
How can I show the tickers on both sides
|
63 |
How can I hide the tickers
|
62 |
Is there any function to show the tooltip
|
61 |
Is there any function to highligth the control when it gets the focus
With Exslider1 .ShowFocusRect = True End With |
60 |
I am using your control in a C++ application, and I would preffer handle messages instead events
With Exslider1 .NotifyParent = True End With |
59 |
How can I change the visual appearance of the thumb usign your EBN files
With Exslider1 .Orientation = exontrol.EXSLIDERLib.OrientationEnum.exVertical .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn") .VisualAppearance.Add(3,"c:\exontrol\images\hot.ebn") .set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumb,&H1000000) .set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumbP,&H2000000) .set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumbD,&H1000000) .set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumbH,&H3000000) End With |
58 |
How can I change the visual appearance of the thumb usign your EBN files
With Exslider1 .VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") .VisualAppearance.Add(2,"c:\exontrol\images\pushed.ebn") .VisualAppearance.Add(3,"c:\exontrol\images\hot.ebn") .set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumb,&H1000000) .set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumbP,&H2000000) .set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumbD,&H1000000) .set_Background32(exontrol.EXSLIDERLib.BackgroundPartEnum.exVSThumbH,&H3000000) End With |
57 |
Can I indent the caption in parts of the control
|
56 |
Does your control support owner draw feature
With Exslider1 .set_OwnerDrawPart(exontrol.EXSLIDERLib.PartEnum.exThumbPart,True) End With |
55 |
Can I assing any extra data to a button or part of the control
|
54 |
How can I specify the size of the thumb
|
53 |
Can I change the tooltip's border using your EBN files
|
52 |
Can I change the tooltip's background color
|
51 |
Can I change the tooltip's background color
|
50 |
Can I change the tooltip's foreground color
|
49 |
Can I change the tooltip's foreground color
|
48 |
Can I change the tooltip's width
|
47 |
Can I change the tooltip's font
|
46 |
Can I change the tooltip's font
Dim f With Exslider1 .BeginUpdate() f = New stdole.StdFont() With f .Name = "Tahoma" .Size = 12 End With .ToolTipFont = f .ToolTipTitle = "Title" .ToolTipText = "This is just a text that's displayed when the user clicks and drags the thumb to a new position" .Value = 4 .EndUpdate() End With |
45 |
Can I display a tooltip when user clicks the thumb and drags it to a new position
With Exslider1 .ToolTipTitle = "Title" .ToolTipText = "This is just a text that's displayed when the user clicks and drags the thumb to a new position" .Value = 4 End With |
44 |
How can I get the value from the cursor
Dim var_ValueFromPoint With Exslider1 var_ValueFromPoint = .get_ValueFromPoint(-1,-1) End With |
43 |
Is there any function to identify the part from the cursor
Dim var_PartFromPoint With Exslider1 var_PartFromPoint = .get_PartFromPoint(-1,-1) End With |
42 |
Is there any option to specify the value to be added or subtracted when user presses the contro's background
|
41 |
Is there any option to specify the value to be added or subtracted when user presses the up or down button
|
40 |
How do I specify the maxmimum value in the control
|
39 |
How do I specify the minimum value in the control
|
38 |
How do I change control's position
|
37 |
How do I change the position of the thumb
|
36 |
How do I enable or disable a part of the control
With Exslider1 .Value = 2 .ThumbSize = 48 .set_EnablePart(exontrol.EXSLIDERLib.PartEnum.exThumbPart,False) .set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"<fgcolor=808080>thumb</fgcolor>") End With |
35 |
How do show or hide parts in the control
With Exslider1 .set_VisiblePart(exontrol.EXSLIDERLib.PartEnum.exThumbPart,False) End With |
34 |
How do I arrange the control vertically
|
33 |
How do I prevent painting the control when I perform several changes
With Exslider1 .BeginUpdate() .Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _ "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _ "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _ "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") .set_HTMLPicture("p1","c:\exontrol\images\zipdisk.gif") .set_HTMLPicture("p2","c:\exontrol\images\auction.gif") .set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"<img>p1</img> thumb <img>p2</img> <br><br><br>... <img>1</img> icon") .ThumbSize = 124 .EndUpdate() End With |
32 |
How do I add icons
|
31 |
How can I align the caption to the right
With Exslider1 .ThumbSize = 64 .set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"thumb right") .set_CaptionAlignment(exontrol.EXSLIDERLib.PartEnum.exThumbPart,exontrol.EXSLIDERLib.AlignmentEnum.RightAlignment) End With |
30 |
How can I align the caption to the left
With Exslider1 .ThumbSize = 64 .set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart," thumb left") .set_CaptionAlignment(exontrol.EXSLIDERLib.PartEnum.exThumbPart,exontrol.EXSLIDERLib.AlignmentEnum.LeftAlignment) End With |
29 |
How can show the caption using a different font
With Exslider1 .set_Caption(exontrol.EXSLIDERLib.PartEnum.exLowerBackPart,"<font Tahoma;12>upper</font> part") .set_Caption(exontrol.EXSLIDERLib.PartEnum.exUpperBackPart,"<font ;4>lower</font> part") .Value = 4 End With |
28 |
Is there any option to display icons or pictures in the parts of the control
With Exslider1 .ThumbSize = 124 .Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _ "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _ "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _ "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") .set_HTMLPicture("p1","c:\exontrol\images\zipdisk.gif") .set_HTMLPicture("p2","c:\exontrol\images\auction.gif") .set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"<img>p1</img> thumb <img>p2</img> <br><br><br>... <img>1</img> icon") End With |
27 |
Is there any option to display icons or pictures in the parts of the control
With Exslider1 .ThumbSize = 124 .set_HTMLPicture("p1","c:\exontrol\images\zipdisk.gif") .set_HTMLPicture("p2","c:\exontrol\images\auction.gif") .set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"<img>p1</img> thumb <img>p2</img>") End With |
26 |
Is there any option to display icons or pictures in the parts of the control
With Exslider1 .ThumbSize = 96 .Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _ "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _ "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _ "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") .set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"<img>1</img> thumb <img>2</img>") End With |
25 |
Is there any option to display icons or pictures in the parts of the control
With Exslider1 .ThumbSize = 96 .Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _ "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _ "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _ "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") .set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"<img>1:4</img><img>1:4</img><img>1:4</img><img>1</img>thumb") End With |
24 |
Is there any option to display icons or pictures in the parts of the control
With Exslider1 .ThumbSize = 96 .Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _ "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _ "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _ "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=") .set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"<img>1</img>thumb") End With |
23 |
How can paint the caption using multiple lines
|
22 |
How can change the background color for a portion of text
With Exslider1 .set_Caption(exontrol.EXSLIDERLib.PartEnum.exLowerBackPart,"<bgcolor=FF0000><fgcolor=0000FF>upper</fgcolor></bgcolor> part") .set_Caption(exontrol.EXSLIDERLib.PartEnum.exUpperBackPart,"<bgcolor=0000FF><fgcolor=FF0000>upper</fgcolor></bgcolor> part") .Value = 4 End With |
21 |
How can change the foreground color for a portion of text
With Exslider1 .set_Caption(exontrol.EXSLIDERLib.PartEnum.exLowerBackPart,"<fgcolor=FF0000>upper</fgcolor> part") .set_Caption(exontrol.EXSLIDERLib.PartEnum.exUpperBackPart,"<fgcolor=0000FF>upper</fgcolor> part") .Value = 4 End With |
20 |
How can show the caption as strikeout
Dim f With Exslider1 f = New stdole.StdFont() With f .Name = "Tahoma" .Size = 12 End With .Font = f .set_Caption(exontrol.EXSLIDERLib.PartEnum.exLowerBackPart,"<s>upper</s> part") .set_Caption(exontrol.EXSLIDERLib.PartEnum.exUpperBackPart,"<s>lower</s> part") .Value = 4 End With |
19 |
How can underline a portion of the caption
Dim f With Exslider1 f = New stdole.StdFont() With f .Name = "Tahoma" .Size = 12 End With .Font = f .set_Caption(exontrol.EXSLIDERLib.PartEnum.exLowerBackPart,"<u>upper</u> part") .set_Caption(exontrol.EXSLIDERLib.PartEnum.exUpperBackPart,"<u>lower</u> part") .Value = 4 End With |
18 |
How can I draw in italic a portion of the caption
Dim f With Exslider1 f = New stdole.StdFont() With f .Name = "Tahoma" .Size = 12 End With .Font = f .set_Caption(exontrol.EXSLIDERLib.PartEnum.exLowerBackPart,"<i>upper</i> part") .set_Caption(exontrol.EXSLIDERLib.PartEnum.exUpperBackPart,"<i>lower</i> part") .Value = 4 End With |
17 |
How can I draw in bold a portion of the caption
Dim f With Exslider1 f = New stdole.StdFont() With f .Name = "Tahoma" .Size = 12 End With .Font = f .set_Caption(exontrol.EXSLIDERLib.PartEnum.exLowerBackPart,"<b>upper</b> part") .set_Caption(exontrol.EXSLIDERLib.PartEnum.exUpperBackPart,"<b>lower</b> part") .Value = 4 End With |
16 |
How can I put a text on the background part in the lower or upper side
With Exslider1 .set_Caption(exontrol.EXSLIDERLib.PartEnum.exLowerBackPart,"upper") .set_Caption(exontrol.EXSLIDERLib.PartEnum.exUpperBackPart,"lower") .Value = 4 End With |
15 |
How can I put a text on the background part
|
14 |
How can I put a text on the thumb
|
13 |
How can I disable the control
With Exslider1 .Enabled = False End With |
12 |
How do I put a picture on the center of the control
With Exslider1 .Picture = Exslider1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") .PictureDisplay = exontrol.EXSLIDERLib.PictureDisplayEnum.MiddleCenter End With |
11 |
How do I resize/stretch a picture on the control's background
With Exslider1 .Picture = Exslider1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") .PictureDisplay = exontrol.EXSLIDERLib.PictureDisplayEnum.Stretch End With |
10 |
How do I put a picture on the control's center right bottom side
With Exslider1 .Picture = Exslider1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") .PictureDisplay = exontrol.EXSLIDERLib.PictureDisplayEnum.LowerRight End With |
9 |
How do I put a picture on the control's center left bottom side
With Exslider1 .Picture = Exslider1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") .PictureDisplay = exontrol.EXSLIDERLib.PictureDisplayEnum.LowerLeft End With |
8 |
How do I put a picture on the control's center top side
With Exslider1 .Picture = Exslider1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") .PictureDisplay = exontrol.EXSLIDERLib.PictureDisplayEnum.UpperCenter .Value = 5 End With |
7 |
How do I put a picture on the control's right top corner
With Exslider1 .Picture = Exslider1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") .PictureDisplay = exontrol.EXSLIDERLib.PictureDisplayEnum.UpperRight .Value = 5 End With |
6 |
How do I put a picture on the control's left top corner
With Exslider1 .Picture = Exslider1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") .PictureDisplay = exontrol.EXSLIDERLib.PictureDisplayEnum.UpperLeft .Value = 5 End With |
5 |
How do I put a picture on the control's background
|
4 |
How can I change the size of control's font
With Exslider1 .ThumbSize = 96 .Font.Size = 12 .ForeColor = Color.FromArgb(255,0,0) .set_Caption(exontrol.EXSLIDERLib.PartEnum.exThumbPart,"thumb") End With |
3 |
How do I change the control's font
|
2 |
How can I change the control's foreground color
|
1 |
How can I change the control's background color
|