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. void __fastcall TForm1::Slider1Change(TObject *Sender) { Slider1->Caption[Exsliderlib_tlb::PartEnum::exThumbPart] = PChar(Slider1->Value); } Slider1->BeginUpdate(); Slider1->VisualAppearance->Add(1,TVariant(String("gBFLBCJwBAEHhEJAAChABbEGACAADACAxRDAMgBQKAAzQFAYaBgGKGAAGIZRVgmFgAQhFcZQSKUOQTDKMIziaQAChwOYlQKMYxRCKYZhpCIZBwGCIYWiiIYiQKCUIiD") + "BMIxseCgAAfSg5YiACIJFAaJhnIapZDKGKQCqASAyCI2UoaDZCIoQTLUBx5AaEAwicQKTjiIiQOgjdoWU46HIhNq3bauCybRoOdj8QKdbhHMbFdz0Oq/cBvbAzVbvBqH" + "QKXLalVhWGYXRrIMbyIqnZxXFoDEQ1ZBZTjeNY5T7PNBIJ5tEyWKTTC4MeoaVpOV5dVrYHj2LY4DCtUgrbYJe47Xq+eZ1W6gOBeDZddZLP7HbZuHDbYJfBSCADkd65To" + "XAOHZEmUcg5HwXpPDeLZQm2dQ7ByTh3A+P5im0b58n6HwnF+KZpnCew8l6boPiOE5xnodh9n8XovAuW57H6HZHl2YB+l6J5Zl4fgeBeQgHgCXZICmfR8h+eAhlodxgng" + "SgNgEIAoBYE4DhwF55nmBYgGgVgMHSYYIC4GoAB4OIZnOCJfkgdgQgeYpIFILoICGOIWA8DgNFCVg4g6I4Ym4PoPGQAJUnGEJkEQDBQDaBJJBwToSiSQxqEuEgklEOJ0" + "hSZVEGcN5GGkXhZhYJYpHYXIXkYZoViYAAHmOEB8hkR5BnSYwemaCY2GaG4HkYWYXAACRjiSFYdEkUhUmkJQngmdh2h+CRVl0RAAAqQ40iuIRoHoGoIiKaIqWwIIXoWA" + "SAg==")); Slider1->ShowThumbProgress = true; Slider1->VisiblePart[Exsliderlib_tlb::PartEnum::exBackgroundPart] = false; Slider1->TickStyle = Exsliderlib_tlb::TickStyleEnum::exNoTicks; Slider1->Value = 3; Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exVSThumb] = 0x1000000; Slider1->EndUpdate(); |
97 |
How can I change the position of the control's tooltip
Slider1->ToolTipTitle = L"Title"; Slider1->ToolTipText = L"This is just a text that's displayed when the user clicks and drags the thumb to a new position"; Slider1->ToolTipX = L"value + 18"; Slider1->ToolTipY = L"value + 18"; |
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
|
93 |
Is it possible to print the control's Value on the thumb
// Change event - Occurs when the value of the control is changed. void __fastcall TForm1::Slider1Change(TObject *Sender) { Slider1->Caption[Exsliderlib_tlb::PartEnum::exThumbPart] = PChar(Slider1->Value); } Slider1->TickStyle = Exsliderlib_tlb::TickStyleEnum::exBoth; Slider1->ThumbSize = 48; Slider1->TickFrequency = 0; Slider1->Value = 5; |
92 |
How can I display the value on the thumb
|
91 |
How can I display a different text than the slider's value
|
90 |
How can I show values for selec range only
Slider1->SelectRange = true; Slider1->SelStart = 1; Slider1->SelLength = 2; Slider1->LabelTick = L"value=current ? '<b><font ;10>' + value : ( value>=smin and value<=smax ? '<fgcolor=0000FF>' + value : '' ) "; |
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
|
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
Slider1->VisualAppearance->Add(1,TVariant("c:\\exontrol\\images\\normal.ebn")); Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exToolTipAppearance] = 0x100ffa0; Slider1->ToolTipText = L"This is just a text that's displayed when the user clicks and drags the thumb to a new position"; Slider1->Value = 43; |
84 |
Can I change the color for the control's border
Slider1->VisualAppearance->Add(1,TVariant("c:\\exontrol\\images\\normal.ebn")); Slider1->Appearance = Exsliderlib_tlb::AppearanceEnum(0x10000f8 | Exsliderlib_tlb::AppearanceEnum::Bump | Exsliderlib_tlb::AppearanceEnum::Sunken); |
83 |
How can I display a character from a specified font ( for vertical alignment )
Slider1->ThumbSize = 96; Slider1->Caption[Exsliderlib_tlb::PartEnum::exThumbPart] = L"<img>-1</img><font Webdings;10>a</font>"; Slider1->Orientation = Exsliderlib_tlb::OrientationEnum::exVertical; |
82 |
How can I display a character from a specified font
Slider1->ThumbSize = 96; Slider1->Caption[Exsliderlib_tlb::PartEnum::exThumbPart] = L"<font Webdings;10>a</font>"; |
81 |
When I have a slider in vertical orientation, how can I get the caption horizontal
|
80 |
Does your control support floating points
|
79 |
How do I change the control's border, using your EBN files
Slider1->VisualAppearance->Add(1,TVariant("c:\\exontrol\\images\\normal.ebn")); Slider1->Appearance = Exsliderlib_tlb::AppearanceEnum(0x1000000); |
78 |
How can I change the color of the selected range in the control
Slider1->Orientation = Exsliderlib_tlb::OrientationEnum::exVertical; Slider1->SelectRange = true; Slider1->SelStart = 2; Slider1->SelLength = 2; Slider1->Value = 1; Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exVSSel] = RGB(255,0,0); |
77 |
How can I change the color of the selection in the control
Slider1->SelectRange = true; Slider1->SelStart = 2; Slider1->SelLength = 2; Slider1->Value = 1; Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exHSSel] = RGB(255,0,0); |
76 |
How can I change the visual appearance of the selected range in the control
Slider1->Orientation = Exsliderlib_tlb::OrientationEnum::exVertical; Slider1->SelectRange = true; Slider1->SelStart = 2; Slider1->SelLength = 2; Slider1->Value = 1; Slider1->VisualAppearance->Add(1,TVariant("c:\\exontrol\\images\\normal.ebn")); Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exVSSel] = 0x1000000; Slider1->Caption[Exsliderlib_tlb::PartEnum::exSelPart] = L"selection"; |
75 |
How can I change the visual appearance of the selection in the control
Slider1->SelectRange = true; Slider1->SelStart = 2; Slider1->SelLength = 2; Slider1->Value = 1; Slider1->VisualAppearance->Add(1,TVariant("c:\\exontrol\\images\\normal.ebn")); Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exHSSel] = 0x1000000; Slider1->Caption[Exsliderlib_tlb::PartEnum::exSelPart] = L"selection"; |
74 |
Is there any option to select a range in the control, or to highlight my selection
Slider1->SelectRange = true; Slider1->SelStart = 2; Slider1->SelLength = 2; Slider1->Value = 1; |
73 |
How can I specify the upper and lower parts using gradient colors
Slider1->Value = 3; Slider1->VisualAppearance->Add(1,TVariant("c:\\exontrol\\images\\normal.ebn")); Slider1->VisualAppearance->Add(2,TVariant("c:\\exontrol\\images\\pushed.ebn")); Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exHSLower] = 0x1000000; Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exHSUpper] = 0x2000000; |
72 |
How can I specify the upper and lower parts using gradient colors
Slider1->Orientation = Exsliderlib_tlb::OrientationEnum::exVertical; Slider1->Value = 3; Slider1->VisualAppearance->Add(1,TVariant("c:\\exontrol\\images\\normal.ebn")); Slider1->VisualAppearance->Add(2,TVariant("c:\\exontrol\\images\\pushed.ebn")); Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exVSLower] = 0x1000000; Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exVSUpper] = 0x2000000; |
71 |
How can I change the color of the progress bar
Slider1->ShowThumbProgress = true; Slider1->VisiblePart[Exsliderlib_tlb::PartEnum::exBackgroundPart] = false; Slider1->TickStyle = Exsliderlib_tlb::TickStyleEnum::exNoTicks; Slider1->Value = 3; Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exVSThumb] = RGB(255,0,0); |
70 |
How can I change the visual appearance of the progress bar using your EBN files
Slider1->ShowThumbProgress = true; Slider1->VisiblePart[Exsliderlib_tlb::PartEnum::exBackgroundPart] = false; Slider1->TickStyle = Exsliderlib_tlb::TickStyleEnum::exNoTicks; Slider1->Value = 3; Slider1->VisualAppearance->Add(1,TVariant("c:\\exontrol\\images\\normal.ebn")); Slider1->VisualAppearance->Add(2,TVariant("c:\\exontrol\\images\\pushed.ebn")); Slider1->VisualAppearance->Add(3,TVariant("c:\\exontrol\\images\\hot.ebn")); Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exVSThumb] = 0x1000000; Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exVSThumbP] = 0x2000000; Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exVSThumbD] = 0x1000000; Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exVSThumbH] = 0x3000000; |
69 |
How can I show a progress bar
Slider1->ShowThumbProgress = true; Slider1->VisiblePart[Exsliderlib_tlb::PartEnum::exBackgroundPart] = false; Slider1->TickStyle = Exsliderlib_tlb::TickStyleEnum::exNoTicks; Slider1->Value = 3; |
68 |
May I change the color of the ticks
Slider1->TickColor = RGB(255,0,0); |
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
|
60 |
I am using your control in a C++ application, and I would preffer handle messages instead events
|
59 |
How can I change the visual appearance of the thumb usign your EBN files
Slider1->Orientation = Exsliderlib_tlb::OrientationEnum::exVertical; Slider1->VisualAppearance->Add(1,TVariant("c:\\exontrol\\images\\normal.ebn")); Slider1->VisualAppearance->Add(2,TVariant("c:\\exontrol\\images\\pushed.ebn")); Slider1->VisualAppearance->Add(3,TVariant("c:\\exontrol\\images\\hot.ebn")); Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exVSThumb] = 0x1000000; Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exVSThumbP] = 0x2000000; Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exVSThumbD] = 0x1000000; Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exVSThumbH] = 0x3000000; |
58 |
How can I change the visual appearance of the thumb usign your EBN files
Slider1->VisualAppearance->Add(1,TVariant("c:\\exontrol\\images\\normal.ebn")); Slider1->VisualAppearance->Add(2,TVariant("c:\\exontrol\\images\\pushed.ebn")); Slider1->VisualAppearance->Add(3,TVariant("c:\\exontrol\\images\\hot.ebn")); Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exVSThumb] = 0x1000000; Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exVSThumbP] = 0x2000000; Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exVSThumbD] = 0x1000000; Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exVSThumbH] = 0x3000000; |
57 |
Can I indent the caption in parts of the control
|
56 |
Does your control support owner draw feature
|
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
Slider1->VisualAppearance->Add(1,TVariant("c:\\exontrol\\images\\normal.ebn")); Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exToolTipAppearance] = 0x1000000; Slider1->ToolTipText = L"This is just a text that's displayed when the user clicks and drags the thumb to a new position"; Slider1->Value = 4; |
52 |
Can I change the tooltip's background color
|
51 |
Can I change the tooltip's background color
Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exToolTipBackColor] = RGB(255,0,0); Slider1->ToolTipText = L"This is just a text that's displayed when the user clicks and drags the thumb to a new position"; Slider1->Value = 4; |
50 |
Can I change the tooltip's foreground color
|
49 |
Can I change the tooltip's foreground color
Slider1->Background[Exsliderlib_tlb::BackgroundPartEnum::exToolTipForeColor] = RGB(255,0,0); Slider1->ToolTipText = L"This is just a text that's displayed when the user clicks and drags the thumb to a new position"; Slider1->Value = 4; |
48 |
Can I change the tooltip's width
|
47 |
Can I change the tooltip's font
|
46 |
Can I change the tooltip's font
Slider1->BeginUpdate(); /* Select the Component\Import Component...\Import a Type Library, to import the following Type Library: OLE Automation TypeLib: stdole2.tlb to define the namespace: Stdole_tlb */ //#include "STDOLE_TLB.h" Stdole_tlb::FontPtr f = Variant::CreateObject(L"StdFont"); f->Name = L"Tahoma"; f->Size = TVariant(long(12)); Slider1->ToolTipFont = (IFontDisp*)(f); Slider1->ToolTipTitle = L"Title"; Slider1->ToolTipText = L"This is just a text that's displayed when the user clicks and drags the thumb to a new position"; Slider1->Value = 4; Slider1->EndUpdate(); |
45 |
Can I display a tooltip when user clicks the thumb and drags it to a new position
Slider1->ToolTipTitle = L"Title"; Slider1->ToolTipText = L"This is just a text that's displayed when the user clicks and drags the thumb to a new position"; Slider1->Value = 4; |
44 |
How can I get the value from the cursor
|
43 |
Is there any function to identify the part from the cursor
|
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
|
35 |
How do show or hide parts in the control
|
34 |
How do I arrange the control vertically
|
33 |
How do I prevent painting the control when I perform several changes
Slider1->BeginUpdate(); Slider1->Images(TVariant(String("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")); Slider1->HTMLPicture[L"p1"] = TVariant("c:\\exontrol\\images\\zipdisk.gif"); Slider1->HTMLPicture[L"p2"] = TVariant("c:\\exontrol\\images\\auction.gif"); Slider1->Caption[Exsliderlib_tlb::PartEnum::exThumbPart] = L"<img>p1</img> thumb <img>p2</img> <br><br><br>... <img>1</img> icon"; Slider1->ThumbSize = 124; Slider1->EndUpdate(); |
32 |
How do I add icons
|
31 |
How can I align the caption to the right
Slider1->ThumbSize = 64; Slider1->Caption[Exsliderlib_tlb::PartEnum::exThumbPart] = L"thumb right"; Slider1->CaptionAlignment[Exsliderlib_tlb::PartEnum::exThumbPart] = Exsliderlib_tlb::AlignmentEnum::RightAlignment; |
30 |
How can I align the caption to the left
Slider1->ThumbSize = 64; Slider1->Caption[Exsliderlib_tlb::PartEnum::exThumbPart] = L" thumb left"; Slider1->CaptionAlignment[Exsliderlib_tlb::PartEnum::exThumbPart] = Exsliderlib_tlb::AlignmentEnum::LeftAlignment; |
29 |
How can show the caption using a different font
Slider1->Caption[Exsliderlib_tlb::PartEnum::exLowerBackPart] = L"<font Tahoma;12>upper</font> part"; Slider1->Caption[Exsliderlib_tlb::PartEnum::exUpperBackPart] = L"<font ;4>lower</font> part"; Slider1->Value = 4; |
28 |
Is there any option to display icons or pictures in the parts of the control
Slider1->ThumbSize = 124; Slider1->Images(TVariant(String("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")); Slider1->HTMLPicture[L"p1"] = TVariant("c:\\exontrol\\images\\zipdisk.gif"); Slider1->HTMLPicture[L"p2"] = TVariant("c:\\exontrol\\images\\auction.gif"); Slider1->Caption[Exsliderlib_tlb::PartEnum::exThumbPart] = L"<img>p1</img> thumb <img>p2</img> <br><br><br>... <img>1</img> icon"; |
27 |
Is there any option to display icons or pictures in the parts of the control
Slider1->ThumbSize = 124; Slider1->HTMLPicture[L"p1"] = TVariant("c:\\exontrol\\images\\zipdisk.gif"); Slider1->HTMLPicture[L"p2"] = TVariant("c:\\exontrol\\images\\auction.gif"); Slider1->Caption[Exsliderlib_tlb::PartEnum::exThumbPart] = L"<img>p1</img> thumb <img>p2</img>"; |
26 |
Is there any option to display icons or pictures in the parts of the control
Slider1->ThumbSize = 96; Slider1->Images(TVariant(String("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")); Slider1->Caption[Exsliderlib_tlb::PartEnum::exThumbPart] = L"<img>1</img> thumb <img>2</img>"; |
25 |
Is there any option to display icons or pictures in the parts of the control
Slider1->ThumbSize = 96; Slider1->Images(TVariant(String("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")); Slider1->Caption[Exsliderlib_tlb::PartEnum::exThumbPart] = L"<img>1:4</img><img>1:4</img><img>1:4</img><img>1</img>thumb"; |
24 |
Is there any option to display icons or pictures in the parts of the control
Slider1->ThumbSize = 96; Slider1->Images(TVariant(String("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq") + "lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" + "0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" + "NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")); Slider1->Caption[Exsliderlib_tlb::PartEnum::exThumbPart] = L"<img>1</img>thumb"; |
23 |
How can paint the caption using multiple lines
|
22 |
How can change the background color for a portion of text
Slider1->Caption[Exsliderlib_tlb::PartEnum::exLowerBackPart] = L"<bgcolor=FF0000><fgcolor=0000FF>upper</fgcolor></bgcolor> part"; Slider1->Caption[Exsliderlib_tlb::PartEnum::exUpperBackPart] = L"<bgcolor=0000FF><fgcolor=FF0000>upper</fgcolor></bgcolor> part"; Slider1->Value = 4; |
21 |
How can change the foreground color for a portion of text
Slider1->Caption[Exsliderlib_tlb::PartEnum::exLowerBackPart] = L"<fgcolor=FF0000>upper</fgcolor> part"; Slider1->Caption[Exsliderlib_tlb::PartEnum::exUpperBackPart] = L"<fgcolor=0000FF>upper</fgcolor> part"; Slider1->Value = 4; |
20 |
How can show the caption as strikeout
/* Select the Component\Import Component...\Import a Type Library, to import the following Type Library: OLE Automation TypeLib: stdole2.tlb to define the namespace: Stdole_tlb */ //#include "STDOLE_TLB.h" Stdole_tlb::FontPtr f = Variant::CreateObject(L"StdFont"); f->Name = L"Tahoma"; f->Size = TVariant(long(12)); Slider1->Font = (IFontDisp*)(f); Slider1->Caption[Exsliderlib_tlb::PartEnum::exLowerBackPart] = L"<s>upper</s> part"; Slider1->Caption[Exsliderlib_tlb::PartEnum::exUpperBackPart] = L"<s>lower</s> part"; Slider1->Value = 4; |
19 |
How can underline a portion of the caption
/* Select the Component\Import Component...\Import a Type Library, to import the following Type Library: OLE Automation TypeLib: stdole2.tlb to define the namespace: Stdole_tlb */ //#include "STDOLE_TLB.h" Stdole_tlb::FontPtr f = Variant::CreateObject(L"StdFont"); f->Name = L"Tahoma"; f->Size = TVariant(long(12)); Slider1->Font = (IFontDisp*)(f); Slider1->Caption[Exsliderlib_tlb::PartEnum::exLowerBackPart] = L"<u>upper</u> part"; Slider1->Caption[Exsliderlib_tlb::PartEnum::exUpperBackPart] = L"<u>lower</u> part"; Slider1->Value = 4; |
18 |
How can I draw in italic a portion of the caption
/* Select the Component\Import Component...\Import a Type Library, to import the following Type Library: OLE Automation TypeLib: stdole2.tlb to define the namespace: Stdole_tlb */ //#include "STDOLE_TLB.h" Stdole_tlb::FontPtr f = Variant::CreateObject(L"StdFont"); f->Name = L"Tahoma"; f->Size = TVariant(long(12)); Slider1->Font = (IFontDisp*)(f); Slider1->Caption[Exsliderlib_tlb::PartEnum::exLowerBackPart] = L"<i>upper</i> part"; Slider1->Caption[Exsliderlib_tlb::PartEnum::exUpperBackPart] = L"<i>lower</i> part"; Slider1->Value = 4; |
17 |
How can I draw in bold a portion of the caption
/* Select the Component\Import Component...\Import a Type Library, to import the following Type Library: OLE Automation TypeLib: stdole2.tlb to define the namespace: Stdole_tlb */ //#include "STDOLE_TLB.h" Stdole_tlb::FontPtr f = Variant::CreateObject(L"StdFont"); f->Name = L"Tahoma"; f->Size = TVariant(long(12)); Slider1->Font = (IFontDisp*)(f); Slider1->Caption[Exsliderlib_tlb::PartEnum::exLowerBackPart] = L"<b>upper</b> part"; Slider1->Caption[Exsliderlib_tlb::PartEnum::exUpperBackPart] = L"<b>lower</b> part"; Slider1->Value = 4; |
16 |
How can I put a text on the background part in the lower or upper side
Slider1->Caption[Exsliderlib_tlb::PartEnum::exLowerBackPart] = L"upper"; Slider1->Caption[Exsliderlib_tlb::PartEnum::exUpperBackPart] = L"lower"; Slider1->Value = 4; |
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
|
12 |
How do I put a picture on the center of the control
Slider1->Picture = (IPictureDisp*)(Slider1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)")); Slider1->PictureDisplay = Exsliderlib_tlb::PictureDisplayEnum::MiddleCenter; |
11 |
How do I resize/stretch a picture on the control's background
Slider1->Picture = (IPictureDisp*)(Slider1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)")); Slider1->PictureDisplay = Exsliderlib_tlb::PictureDisplayEnum::Stretch; |
10 |
How do I put a picture on the control's center right bottom side
Slider1->Picture = (IPictureDisp*)(Slider1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)")); Slider1->PictureDisplay = Exsliderlib_tlb::PictureDisplayEnum::LowerRight; |
9 |
How do I put a picture on the control's center left bottom side
Slider1->Picture = (IPictureDisp*)(Slider1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)")); Slider1->PictureDisplay = Exsliderlib_tlb::PictureDisplayEnum::LowerLeft; |
8 |
How do I put a picture on the control's center top side
Slider1->Picture = (IPictureDisp*)(Slider1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)")); Slider1->PictureDisplay = Exsliderlib_tlb::PictureDisplayEnum::UpperCenter; Slider1->Value = 5; |
7 |
How do I put a picture on the control's right top corner
Slider1->Picture = (IPictureDisp*)(Slider1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)")); Slider1->PictureDisplay = Exsliderlib_tlb::PictureDisplayEnum::UpperRight; Slider1->Value = 5; |
6 |
How do I put a picture on the control's left top corner
Slider1->Picture = (IPictureDisp*)(Slider1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)")); Slider1->PictureDisplay = Exsliderlib_tlb::PictureDisplayEnum::UpperLeft; Slider1->Value = 5; |
5 |
How do I put a picture on the control's background
|
4 |
How can I change the size of control's font
|
3 |
How do I change the control's font
Slider1->ThumbSize = 32; Slider1->Font->Name = L"Tahoma"; Slider1->ForeColor = RGB(255,0,0); Slider1->Caption[Exsliderlib_tlb::PartEnum::exThumbPart] = L"thumb"; |
2 |
How can I change the control's foreground color
Slider1->ForeColor = RGB(255,0,0); Slider1->ThumbSize = 32; Slider1->Caption[Exsliderlib_tlb::PartEnum::exThumbPart] = L"thumb"; |
1 |
How can I change the control's background color
Slider1->BackColor = RGB(0,255,0); |