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
/* Copy and paste the following directives to your header file as it defines the namespace 'EXLABELLib' for the library: 'ExLabel 1.0 Control Library' #import <ExLabel.dll> using namespace EXLABELLib; */ EXLABELLib::ILabelPtr spLabel1 = GetDlgItem(IDC_LABEL1)->GetControlUnknown(); spLabel1->PutAlignment(EXLABELLib::CenterAlignment); spLabel1->PutVAlignment(EXLABELLib::MiddleAlignment); spLabel1->PutCaption(L"<b>mirror horizontal</b> text"); spLabel1->PutBackColor(RGB(255,255,255)); spLabel1->PutRotate(EXLABELLib::exHTMLMirror); |
29 |
How can I display vertically the caption
/* Copy and paste the following directives to your header file as it defines the namespace 'EXLABELLib' for the library: 'ExLabel 1.0 Control Library' #import <ExLabel.dll> using namespace EXLABELLib; */ EXLABELLib::ILabelPtr spLabel1 = GetDlgItem(IDC_LABEL1)->GetControlUnknown(); spLabel1->PutAlignment(EXLABELLib::CenterAlignment); spLabel1->PutVAlignment(EXLABELLib::MiddleAlignment); spLabel1->PutCaption(L"<b>vertical</b> text"); spLabel1->PutBackColor(RGB(255,255,255)); spLabel1->PutRotate(EXLABELLib::exHTMLVertical); |
28 |
Does your control support text decorations
|
27 |
Does you control support padding
/* Copy and paste the following directives to your header file as it defines the namespace 'EXLABELLib' for the library: 'ExLabel 1.0 Control Library' #import <ExLabel.dll> using namespace EXLABELLib; */ EXLABELLib::ILabelPtr spLabel1 = GetDlgItem(IDC_LABEL1)->GetControlUnknown(); spLabel1->PutAppearance(EXLABELLib::Flat); spLabel1->PutVAlignment(EXLABELLib::TopAlignment); spLabel1->PutCaption(L"<fgcolor FFFFFF><bgcolor 000000>left/right and top/bottom padding</bgcolor></fgcolor>"); spLabel1->PutBorderWidth(4); spLabel1->PutBorderHeight(4); spLabel1->PutBackColor(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
// Click event - Occurs when the user presses and then releases the left mouse button over the control. void OnClickLabel1() { /* Copy and paste the following directives to your header file as it defines the namespace 'EXLABELLib' for the library: 'ExLabel 1.0 Control Library' #import <ExLabel.dll> using namespace EXLABELLib; */ EXLABELLib::ILabelPtr spLabel1 = GetDlgItem(IDC_LABEL1)->GetControlUnknown(); spLabel1->PutBackgroundExtValue(EXLABELLib::exIndexExt5,EXLABELLib::exClientExt,"25%"); spLabel1->PutBackgroundExtValue(EXLABELLib::exIndexExt5,EXLABELLib::exTextExt,spLabel1->GetBackgroundExtValue(EXLABELLib::exIndexExt5,EXLABELLib::exClientExt)); } EXLABELLib::ILabelPtr spLabel1 = GetDlgItem(IDC_LABEL1)->GetControlUnknown(); spLabel1->PutAlignment(EXLABELLib::CenterAlignment); spLabel1->PutCaption(L"Command"); spLabel1->PutVAlignment(EXLABELLib::TopAlignment); spLabel1->PutBackgroundExt(_bstr_t("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)])"); spLabel1->PutBackgroundExtValue(EXLABELLib::exIndexExt5,EXLABELLib::exClientExt,"75%"); spLabel1->PutBackgroundExtValue(EXLABELLib::exIndexExt5,EXLABELLib::exTextExt,spLabel1->GetBackgroundExtValue(EXLABELLib::exIndexExt5,EXLABELLib::exClientExt)); |
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
/* Copy and paste the following directives to your header file as it defines the namespace 'EXLABELLib' for the library: 'ExLabel 1.0 Control Library' #import <ExLabel.dll> using namespace EXLABELLib; */ EXLABELLib::ILabelPtr spLabel1 = GetDlgItem(IDC_LABEL1)->GetControlUnknown(); spLabel1->PutAlignment(EXLABELLib::CenterAlignment); spLabel1->PutHTMLPicture(L"pic1","c:\\exontrol\\images\\zipdisk.gif"); spLabel1->PutHTMLPicture(L"pic2","c:\\exontrol\\images\\auction.gif"); spLabel1->PutCaption(L"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
/* Copy and paste the following directives to your header file as it defines the namespace 'EXLABELLib' for the library: 'ExLabel 1.0 Control Library' #import <ExLabel.dll> using namespace EXLABELLib; */ EXLABELLib::ILabelPtr spLabel1 = GetDlgItem(IDC_LABEL1)->GetControlUnknown(); spLabel1->PutBackColor(RGB(255,255,255)); spLabel1->PutCaption(L"text <fgcolor FF0000>foreground</fgcolor> text"); |
18 |
How can I specify a different background color for a portion of the caption only
/* Copy and paste the following directives to your header file as it defines the namespace 'EXLABELLib' for the library: 'ExLabel 1.0 Control Library' #import <ExLabel.dll> using namespace EXLABELLib; */ EXLABELLib::ILabelPtr spLabel1 = GetDlgItem(IDC_LABEL1)->GetControlUnknown(); spLabel1->PutBackColor(RGB(255,255,255)); spLabel1->PutCaption(L"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
/* Copy and paste the following directives to your header file as it defines the namespace 'EXLABELLib' for the library: 'ExLabel 1.0 Control Library' #import <ExLabel.dll> using namespace EXLABELLib; */ EXLABELLib::ILabelPtr spLabel1 = GetDlgItem(IDC_LABEL1)->GetControlUnknown(); spLabel1->PutWordWrap(VARIANT_TRUE); spLabel1->PutCaption(L"<c>Name&Address<br><upline><dotline> <c><font Tahoma;8>DeliveryNotes</font>"); spLabel1->PutAlignment(EXLABELLib::LeftAlignment); spLabel1->PutBackColor(RGB(0,0,0)); spLabel1->PutForeColor(RGB(255,255,255)); |
14 |
How can I show a thick frame around the label
|
13 |
How can I add text decorations ( shadow )
/* Copy and paste the following directives to your header file as it defines the namespace 'EXLABELLib' for the library: 'ExLabel 1.0 Control Library' #import <ExLabel.dll> using namespace EXLABELLib; */ EXLABELLib::ILabelPtr spLabel1 = GetDlgItem(IDC_LABEL1)->GetControlUnknown(); spLabel1->PutBackColor(RGB(255,255,255)); spLabel1->PutWordWrap(VARIANT_TRUE); spLabel1->PutBorderWidth(2); spLabel1->PutBorderHeight(2); spLabel1->PutCaption(_bstr_t("<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 )
/* Copy and paste the following directives to your header file as it defines the namespace 'EXLABELLib' for the library: 'ExLabel 1.0 Control Library' #import <ExLabel.dll> using namespace EXLABELLib; */ EXLABELLib::ILabelPtr spLabel1 = GetDlgItem(IDC_LABEL1)->GetControlUnknown(); spLabel1->PutBackColor(RGB(255,255,255)); spLabel1->PutWordWrap(VARIANT_TRUE); spLabel1->PutBorderWidth(2); spLabel1->PutBorderHeight(2); spLabel1->PutCaption(_bstr_t("<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>"); |
11 |
How can I add text decorations ( gradient )
|
10 |
Is it possible to display the control's tooltip using colord EBN objects
/* Copy and paste the following directives to your header file as it defines the namespace 'EXLABELLib' for the library: 'ExLabel 1.0 Control Library' #import <ExLabel.dll> using namespace EXLABELLib; */ EXLABELLib::ILabelPtr spLabel1 = GetDlgItem(IDC_LABEL1)->GetControlUnknown(); spLabel1->GetVisualAppearance()->Add(1,"c:\\exontrol\\images\\normal.ebn"); spLabel1->PutCaption(L"just hover the cursor over the control"); spLabel1->PutAlignment(EXLABELLib::CenterAlignment); spLabel1->PutBackground(EXLABELLib::exToolTipAppearance,0x1ff0000); spLabel1->PutToolTipText(L"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
/* Copy and paste the following directives to your header file as it defines the namespace 'EXLABELLib' for the library: 'ExLabel 1.0 Control Library' #import <ExLabel.dll> using namespace EXLABELLib; */ EXLABELLib::ILabelPtr spLabel1 = GetDlgItem(IDC_LABEL1)->GetControlUnknown(); spLabel1->GetVisualAppearance()->Add(1,"c:\\exontrol\\images\\normal.ebn"); spLabel1->PutCaption(L"just hover the cursor over the control"); spLabel1->PutAlignment(EXLABELLib::CenterAlignment); spLabel1->PutBackground(EXLABELLib::exToolTipAppearance,0x1000000); spLabel1->PutToolTipText(L"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
/* Copy and paste the following directives to your header file as it defines the namespace 'EXLABELLib' for the library: 'ExLabel 1.0 Control Library' #import <ExLabel.dll> using namespace EXLABELLib; */ EXLABELLib::ILabelPtr spLabel1 = GetDlgItem(IDC_LABEL1)->GetControlUnknown(); spLabel1->GetVisualAppearance()->Add(1,"c:\\exontrol\\images\\normal.ebn"); spLabel1->PutAppearance(EXLABELLib::AppearanceEnum(0x1a88a58 | EXLABELLib::Bump)); spLabel1->PutCaption(L"just the label's caption"); spLabel1->PutAlignment(EXLABELLib::CenterAlignment); |
6 |
Is it possible to display an EBN so the borders will be transparent
/* Copy and paste the following directives to your header file as it defines the namespace 'EXLABELLib' for the library: 'ExLabel 1.0 Control Library' #import <ExLabel.dll> using namespace EXLABELLib; */ EXLABELLib::ILabelPtr spLabel1 = GetDlgItem(IDC_LABEL1)->GetControlUnknown(); spLabel1->GetVisualAppearance()->Add(1,"c:\\exontrol\\images\\normal.ebn"); spLabel1->PutAppearance(EXLABELLib::AppearanceEnum(0x1000000)); spLabel1->PutCaption(L"just the label's caption"); spLabel1->PutAlignment(EXLABELLib::CenterAlignment); |
5 |
How do I put/resize/stretch a picture on the control's background
/* Copy and paste the following directives to your header file as it defines the namespace 'EXLABELLib' for the library: 'ExLabel 1.0 Control Library' #import <ExLabel.dll> using namespace EXLABELLib; */ EXLABELLib::ILabelPtr spLabel1 = GetDlgItem(IDC_LABEL1)->GetControlUnknown(); spLabel1->PutPicture(IPictureDispPtr(((IDispatch*)(spLabel1->ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"))))); spLabel1->PutPictureDisplay(EXLABELLib::Stretch); spLabel1->PutBorderWidth(64); spLabel1->PutBorderHeight(64); |
4 |
How can I change the control's font
/* Copy and paste the following directives to your header file as it defines the namespace 'EXLABELLib' for the library: 'ExLabel 1.0 Control Library' #import <ExLabel.dll> using namespace EXLABELLib; */ EXLABELLib::ILabelPtr spLabel1 = GetDlgItem(IDC_LABEL1)->GetControlUnknown(); /* Includes the definition for CreateObject function like follows: #include <comdef.h> IUnknownPtr CreateObject( BSTR Object ) { IUnknownPtr spResult; spResult.CreateInstance( Object ); return spResult; }; */ /* Copy and paste the following directives to your header file as it defines the namespace 'stdole' for the library: 'OLE Automation' #import <stdole2.tlb> */ stdole::FontPtr f = ::CreateObject(L"StdFont"); f->PutName(L"Verdana"); f->PutSize(_variant_t(long(12))); spLabel1->PutFont(IFontDispPtr(((stdole::FontPtr)(f)))); spLabel1->PutCaption(L"just the label's caption"); spLabel1->PutBorderWidth(8); spLabel1->PutBorderHeight(8); |
3 |
How can I change the control's font
|
2 |
How do I change the control's foreground color
/* Copy and paste the following directives to your header file as it defines the namespace 'EXLABELLib' for the library: 'ExLabel 1.0 Control Library' #import <ExLabel.dll> using namespace EXLABELLib; */ EXLABELLib::ILabelPtr spLabel1 = GetDlgItem(IDC_LABEL1)->GetControlUnknown(); spLabel1->PutForeColor(RGB(255,0,0)); spLabel1->PutCaption(L"just the label's caption"); spLabel1->PutBorderWidth(8); spLabel1->PutBorderHeight(8); |
1 |
How do I change the control's background color
/* Copy and paste the following directives to your header file as it defines the namespace 'EXLABELLib' for the library: 'ExLabel 1.0 Control Library' #import <ExLabel.dll> using namespace EXLABELLib; */ EXLABELLib::ILabelPtr spLabel1 = GetDlgItem(IDC_LABEL1)->GetControlUnknown(); spLabel1->PutBackColor(RGB(255,0,0)); |