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
<BODY onload="Init()"> <OBJECT CLASSID="clsid:09ABB057-BBDE-49A6-B5CB-B05197CD337B" id="Label1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Label1 .Alignment = 1 .VAlignment = 1 .Caption = "<b>mirror horizontal</b> text" .BackColor = RGB(255,255,255) .Rotate = 16 End With End Function </SCRIPT> </BODY> |
29 |
How can I display vertically the caption
<BODY onload="Init()"> <OBJECT CLASSID="clsid:09ABB057-BBDE-49A6-B5CB-B05197CD337B" id="Label1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Label1 .Alignment = 1 .VAlignment = 1 .Caption = "<b>vertical</b> text" .BackColor = RGB(255,255,255) .Rotate = 1 End With End Function </SCRIPT> </BODY> |
28 |
Does your control support text decorations
<BODY onload="Init()"> <OBJECT CLASSID="clsid:09ABB057-BBDE-49A6-B5CB-B05197CD337B" id="Label1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Label1 .WordWrap = True .Caption = "<font ;32><sha ;;0><out><gra FFFFFF>gradient-bottom</gra><br><fgcolor=FFFFFF><gra 000000>gradient-top</gra></fgcolor><br><fgcol" & _ "or=000000><gra F0F0F0;1;1>center-gradient</gra></fgcolor><br><sha><out><gra FFFFFF>gradient-bottom</gra><br><fgcolor=FFFFFF><gra" & _ " 000000>gradient-top</gra></fgcolor><br><fgcolor=000000><gra F0F0F0;1;1>center-gradient</gra></fgcolor><br>" End With End Function </SCRIPT> </BODY> |
27 |
Does you control support padding
<BODY onload="Init()"> <OBJECT CLASSID="clsid:09ABB057-BBDE-49A6-B5CB-B05197CD337B" id="Label1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Label1 .Appearance = 1 .VAlignment = 0 .Caption = "<fgcolor FFFFFF><bgcolor 000000>left/right and top/bottom padding</bgcolor></fgcolor>" .BorderWidth = 4 .BorderHeight = 4 .BackColor = RGB(255,255,255) End With End Function </SCRIPT> </BODY> |
26 |
How can I display multiple-lines label
<BODY onload="Init()"> <OBJECT CLASSID="clsid:09ABB057-BBDE-49A6-B5CB-B05197CD337B" id="Label1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Label1 .WordWrap = True .Caption = "<b>1.</b> This is the first line<br><b>2.</b> This is the second line." End With End Function </SCRIPT> </BODY> |
25 |
How can I disable the control
<BODY onload="Init()"> <OBJECT CLASSID="clsid:09ABB057-BBDE-49A6-B5CB-B05197CD337B" id="Label1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Label1 .Enabled = False .Alignment = 1 .Caption = "Command" End With End Function </SCRIPT> </BODY> |
24 |
How can I display a percent bar over the control
<BODY onload="Init()"> <SCRIPT LANGUAGE="VBScript"> Function Label1_Click() With Label1 .BackgroundExtValue(5,2) = "25%" .BackgroundExtValue(5,4) = .BackgroundExtValue(5,2) End With End Function </SCRIPT> <OBJECT CLASSID="clsid:09ABB057-BBDE-49A6-B5CB-B05197CD337B" id="Label1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Label1 .Alignment = 1 .Caption = "Command" .VAlignment = 0 .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%`,al" & _ "ign=0x11,pattern=0x006,patterncolor=RGB(0,128,0),frame=RGB(0,128,0)])" .BackgroundExtValue(5,2) = "75%" .BackgroundExtValue(5,4) = .BackgroundExtValue(5,2) End With End Function </SCRIPT> </BODY> |
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
<BODY onload="Init()"> <OBJECT CLASSID="clsid:09ABB057-BBDE-49A6-B5CB-B05197CD337B" id="Label1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Label1 .Alignment = 1 .HTMLPicture("pic1") = "c:\exontrol\images\zipdisk.gif" .HTMLPicture("pic2") = "c:\exontrol\images\auction.gif" .Caption = "text and pictures <img>pic1</img>,<img>pic2</img>,..." End With End Function </SCRIPT> </BODY> |
20 |
How can I display icons
|
19 |
How can I specify a different foreground color for a portion of the caption only
<BODY onload="Init()"> <OBJECT CLASSID="clsid:09ABB057-BBDE-49A6-B5CB-B05197CD337B" id="Label1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Label1 .BackColor = RGB(255,255,255) .Caption = "text <fgcolor FF0000>foreground</fgcolor> text" End With End Function </SCRIPT> </BODY> |
18 |
How can I specify a different background color for a portion of the caption only
<BODY onload="Init()"> <OBJECT CLASSID="clsid:09ABB057-BBDE-49A6-B5CB-B05197CD337B" id="Label1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Label1 .BackColor = RGB(255,255,255) .Caption = "text <bgcolor FF0000>background</bgcolor> text" End With End Function </SCRIPT> </BODY> |
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
<BODY onload="Init()"> <OBJECT CLASSID="clsid:09ABB057-BBDE-49A6-B5CB-B05197CD337B" id="Label1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Label1 .WordWrap = True .Caption = "<c>Name&Address<br><upline><dotline> <c><font Tahoma;8>DeliveryNotes</font>" .Alignment = 0 .BackColor = RGB(0,0,0) .ForeColor = RGB(255,255,255) End With End Function </SCRIPT> </BODY> |
14 |
How can I show a thick frame around the label
|
13 |
How can I add text decorations ( shadow )
<BODY onload="Init()"> <OBJECT CLASSID="clsid:09ABB057-BBDE-49A6-B5CB-B05197CD337B" id="Label1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Label1 .BackColor = RGB(255,255,255) .WordWrap = True .BorderWidth = 2 .BorderHeight = 2 .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>" End With End Function </SCRIPT> </BODY> |
12 |
How can I add text decorations ( outline )
<BODY onload="Init()"> <OBJECT CLASSID="clsid:09ABB057-BBDE-49A6-B5CB-B05197CD337B" id="Label1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Label1 .BackColor = RGB(255,255,255) .WordWrap = True .BorderWidth = 2 .BorderHeight = 2 .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>out" & _ "line anti-aliasing</sha></font>" End With End Function </SCRIPT> </BODY> |
11 |
How can I add text decorations ( gradient )
<BODY onload="Init()"> <OBJECT CLASSID="clsid:09ABB057-BBDE-49A6-B5CB-B05197CD337B" id="Label1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Label1 .WordWrap = True .Caption = "<font ;14><gra FFFFFF>gradient-bottom</gra><br><fgcolor=FFFFFF><gra 000000>gradient-top</gra></fgcolor><br><fgcolor=000000><gra" & _ " F0F0F0;1;1>center-gradient</gra></fgcolor><br>" End With End Function </SCRIPT> </BODY> |
10 |
Is it possible to display the control's tooltip using colord EBN objects
<BODY onload="Init()"> <OBJECT CLASSID="clsid:09ABB057-BBDE-49A6-B5CB-B05197CD337B" id="Label1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Label1 .VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn" .Caption = "just hover the cursor over the control" .Alignment = 1 .Background(64) = &H1ff0000 .ToolTipText = "This is just a text that's displayed when the user clicks and drags the thumb to a new position" End With End Function </SCRIPT> </BODY> |
9 |
Is it possible to display the control's tooltip using EBN objects
<BODY onload="Init()"> <OBJECT CLASSID="clsid:09ABB057-BBDE-49A6-B5CB-B05197CD337B" id="Label1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Label1 .VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn" .Caption = "just hover the cursor over the control" .Alignment = 1 .Background(64) = &H1000000 .ToolTipText = "This is just a text that's displayed when the user clicks and drags the thumb to a new position" End With End Function </SCRIPT> </BODY> |
8 |
How do I change the control's tooltip
|
7 |
Is it possible to display a colored EBN so the borders will be transparent
<BODY onload="Init()"> <OBJECT CLASSID="clsid:09ABB057-BBDE-49A6-B5CB-B05197CD337B" id="Label1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Label1 .VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn" .Appearance = 27822685 ' &H1a88a58 Or AppearanceEnum.Bump .Caption = "just the label's caption" .Alignment = 1 End With End Function </SCRIPT> </BODY> |
6 |
Is it possible to display an EBN so the borders will be transparent
<BODY onload="Init()"> <OBJECT CLASSID="clsid:09ABB057-BBDE-49A6-B5CB-B05197CD337B" id="Label1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Label1 .VisualAppearance.Add 1,"c:\exontrol\images\normal.ebn" .Appearance = 16777216 ' &H1000000 .Caption = "just the label's caption" .Alignment = 1 End With End Function </SCRIPT> </BODY> |
5 |
How do I put/resize/stretch a picture on the control's background
<BODY onload="Init()"> <OBJECT CLASSID="clsid:09ABB057-BBDE-49A6-B5CB-B05197CD337B" id="Label1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Label1 .Picture = Label1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)") .PictureDisplay = 49 .BorderWidth = 64 .BorderHeight = 64 End With End Function </SCRIPT> </BODY> |
4 |
How can I change the control's font
<BODY onload="Init()"> <OBJECT CLASSID="clsid:09ABB057-BBDE-49A6-B5CB-B05197CD337B" id="Label1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Label1 Set f = CreateObject("StdFont") With f .Name = "Verdana" .Size = 12 End With .Font = f .Caption = "just the label's caption" .BorderWidth = 8 .BorderHeight = 8 End With End Function </SCRIPT> </BODY> |
3 |
How can I change the control's font
|
2 |
How do I change the control's foreground color
<BODY onload="Init()"> <OBJECT CLASSID="clsid:09ABB057-BBDE-49A6-B5CB-B05197CD337B" id="Label1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Label1 .ForeColor = RGB(255,0,0) .Caption = "just the label's caption" .BorderWidth = 8 .BorderHeight = 8 End With End Function </SCRIPT> </BODY> |
1 |
How do I change the control's background color
<BODY onload="Init()"> <OBJECT CLASSID="clsid:09ABB057-BBDE-49A6-B5CB-B05197CD337B" id="Label1"></OBJECT> <SCRIPT LANGUAGE="VBScript"> Function Init() With Label1 .BackColor = RGB(255,0,0) End With End Function </SCRIPT> </BODY> |