32 |
ImageSize property on 32 (specifies the size of the control' icons)
|
31 |
ImageSize property on 16 (default) (specifies the size of the control' icons)
|
30 |
How can I display the caption in mirror
OleObject oLabel oLabel = ole_1.Object oLabel.Alignment = 1 oLabel.VAlignment = 1 oLabel.Caption = "<b>mirror horizontal</b> text" oLabel.BackColor = RGB(255,255,255) oLabel.Rotate = 16 |
29 |
How can I display vertically the caption
OleObject oLabel oLabel = ole_1.Object oLabel.Alignment = 1 oLabel.VAlignment = 1 oLabel.Caption = "<b>vertical</b> text" oLabel.BackColor = RGB(255,255,255) oLabel.Rotate = 1 |
28 |
Does your control support text decorations
|
27 |
Does you control support padding
OleObject oLabel oLabel = ole_1.Object oLabel.Appearance = 1 oLabel.VAlignment = 0 oLabel.Caption = "<fgcolor FFFFFF><bgcolor 000000>left/right and top/bottom padding</bgcolor></fgcolor>" oLabel.BorderWidth = 4 oLabel.BorderHeight = 4 oLabel.BackColor = RGB(255,255,255) |
26 |
How can I display multiple-lines label
|
25 |
How can I disable the control
|
24 |
How can I display a percent bar over the control
/*begin event Click() - Occurs when the user presses and then releases the left mouse button over the control.*/ /* oLabel = ole_1.Object oLabel.BackgroundExtValue(5,2,"25%") oLabel.BackgroundExtValue(5,4,oLabel.BackgroundExtValue(5,2)) */ /*end event Click*/ OleObject oLabel oLabel = ole_1.Object oLabel.Alignment = 1 oLabel.Caption = "Command" oLabel.VAlignment = 0 oLabel.BackgroundExt = "bottom[4],left[4],right[4],bottom[16,pattern=0x000,frame=RGB(0,0,0)](left[50%,back=RGB(0,255,0),text=`<font ;6><sha ;;0>50%`,align=0x11,pattern=0x006,patterncolor=RGB(0,128,0),frame=RGB(0,128,0)])" oLabel.BackgroundExtValue(5,2,"75%") oLabel.BackgroundExtValue(5,4,oLabel.BackgroundExtValue(5,2)) |
23 |
Is it possible to display an additional caption on the control's background
|
22 |
How can I display a pattern over the label
|
21 |
How can I display pictures
OleObject oLabel oLabel = ole_1.Object oLabel.Alignment = 1 oLabel.HTMLPicture("pic1","c:\exontrol\images\zipdisk.gif") oLabel.HTMLPicture("pic2","c:\exontrol\images\auction.gif") oLabel.Caption = "text and pictures <img>pic1</img>,<img>pic2</img>,..." |
20 |
How can I display icons
|
19 |
How can I specify a different foreground color for a portion of the caption only
OleObject oLabel oLabel = ole_1.Object oLabel.BackColor = RGB(255,255,255) oLabel.Caption = "text <fgcolor FF0000>foreground</fgcolor> text" |
18 |
How can I specify a different background color for a portion of the caption only
OleObject oLabel oLabel = ole_1.Object oLabel.BackColor = RGB(255,255,255) oLabel.Caption = "text <bgcolor FF0000>background</bgcolor> text" |
17 |
Does your control support subscript or superscript, in HTML captions
|
16 |
How can I center the text and underlined with a dot line
|
15 |
Is there anyway to get the dotline or solidline to extend across the entire width of the caption area when text is centre-aligned horizontally
OleObject oLabel oLabel = ole_1.Object oLabel.WordWrap = true oLabel.Caption = "<c>Name&Address<br><upline><dotline> <c><font Tahoma;8>DeliveryNotes</font>" oLabel.Alignment = 0 oLabel.BackColor = RGB(0,0,0) oLabel.ForeColor = RGB(255,255,255) |
14 |
How can I show a thick frame around the label
|
13 |
How can I add text decorations ( shadow )
OleObject oLabel oLabel = ole_1.Object oLabel.BackColor = RGB(255,255,255) oLabel.WordWrap = true oLabel.BorderWidth = 2 oLabel.BorderHeight = 2 oLabel.Caption = "<font ;28><sha>shadow</sha><br><fgcolor=FFFFFF><sha 0>outline</sha><br><sha 0;;0>outline anti-aliasing</sha><br><sha 808080;8;0>outline anti-aliasing</sha><br><sha 0;2;0>outline anti-aliasing</sha></font>" |
12 |
How can I add text decorations ( outline )
OleObject oLabel oLabel = ole_1.Object oLabel.BackColor = RGB(255,255,255) oLabel.WordWrap = true oLabel.BorderWidth = 2 oLabel.BorderHeight = 2 oLabel.Caption = "<font ;28><out>outline</out><br><fgcolor=FFFFFF><out 0>outline</out><br><sha 0;;0>outline anti-aliasing</sha><br><sha 0;2;0>outline anti-aliasing</sha></font>" |
11 |
How can I add text decorations ( gradient )
|
10 |
Is it possible to display the control's tooltip using colord EBN objects
OleObject oLabel oLabel = ole_1.Object oLabel.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oLabel.Caption = "just hover the cursor over the control" oLabel.Alignment = 1 oLabel.Background(64,33488896 /*0x1ff0000*/) oLabel.ToolTipText = "This is just a text that's displayed when the user clicks and drags the thumb to a new position" |
9 |
Is it possible to display the control's tooltip using EBN objects
OleObject oLabel oLabel = ole_1.Object oLabel.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oLabel.Caption = "just hover the cursor over the control" oLabel.Alignment = 1 oLabel.Background(64,16777216 /*0x1000000*/) oLabel.ToolTipText = "This is just a text that's displayed when the user clicks and drags the thumb to a new position" |
8 |
How do I change the control's tooltip
|
7 |
Is it possible to display a colored EBN so the borders will be transparent
OleObject oLabel oLabel = ole_1.Object oLabel.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oLabel.Appearance = 27822685 /*0x1a88a58 | Bump*/ oLabel.Caption = "just the label's caption" oLabel.Alignment = 1 |
6 |
Is it possible to display an EBN so the borders will be transparent
OleObject oLabel oLabel = ole_1.Object oLabel.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn") oLabel.Appearance = 16777216 /*0x1000000 | */ oLabel.Caption = "just the label's caption" oLabel.Alignment = 1 |
5 |
How do I put/resize/stretch a picture on the control's background
OleObject oLabel oLabel = ole_1.Object oLabel.Picture = oLabel.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") oLabel.PictureDisplay = 49 oLabel.BorderWidth = 64 oLabel.BorderHeight = 64 |
4 |
How can I change the control's font
|
3 |
How can I change the control's font
|
2 |
How do I change the control's foreground color
OleObject oLabel oLabel = ole_1.Object oLabel.ForeColor = RGB(255,0,0) oLabel.Caption = "just the label's caption" oLabel.BorderWidth = 8 oLabel.BorderHeight = 8 |
1 |
How do I change the control's background color
OleObject oLabel oLabel = ole_1.Object oLabel.BackColor = RGB(255,0,0) |