CommonControls (Replacement of the MS common controls)
This project is intended to replace the MS common controls for VB6.
The "MSCOMCTL.OCX" (respectively "COMCTL32.OCX") can be replaced completly.
The "MSCOMCT2.OCX" (respectively "COMCT232.OCX") can be replaced completly.
The "RICHTX32.OCX" can be replaced completly.
The "COMDLG32.OCX" can be replaced completly.
The "COMCT332.OCX" can be replaced completly.
The "MCIWNDX.OCX" (shipped with VB5) can be replaced completly.
The "SYSINFO.OCX" can be replaced completly.
Unicode is supported for all the stated controls. Also these are full DPI-Aware and ready for 64-bit.
At design-time (IDE) there is only one dependency. (OLEGuids.tlb)
This is a modified version of the original .tlb from the vbaccelerator website.
But for the compiled .exe there are no dependencies, because the .tlb gets then compiled into the executable.
Everything should be self explained, because all functions and properties have a description.
The source code of the project can also be viewed on GitHub.
This Demo shows of how to make the ToolBar control accessible per shortcut key on a MDIForm.
ActiveX Control version, together with a Registration-Free (Side-by-side) solution: Version 1.7
Notes:
- When using the SetParent or MoveWindow API, pass .hWndUserControl and not .hWnd.
- When changing the "Project Name", have all forms open, else all properties are lost. Because the library to which the controls are referring to is the "Project Name" itself. Having all forms open will ensure that the .frx files will be updated with the new "Project Name".
List of revisions:
Code:
06-Sep-2023
- Passing vbNullString to the Let .List(i) property of the ComboBoxW/ListBoxW control does not cause an misbehavior anymore.
- WM_CHAR now blocked in the list control if the Locked property is true in the ComboBoxW/FontCombo/VirtualCombo/ImageCombo control.
25-Jul-2023
- ODS_HOTLIGHT added to the OwnerDraw event in the CommandButtonW/CheckBoxW/OptionButtonW.
Condition is that the MouseTrack property is set to True.
08-Jul-2023
- Fixed const FR_HIDEMATCHCASE.
07-Jul-2023
- Modified OLEGuids.tlb as following: (compiled with same uuid)
- replaced LPSTR and LPWSTR to LONG StrPtr() to get compatibility with x64 OLEGuids twinBASIC package.
Unregister to old OLEGuids.tlb is not necessary, just overwrite the file.
06-Jul-2023
- Changing font for ProgressBar will cause an invalidation when a Text property is set.
02-Jul-2023
- PtInRect/LBItemFromPt/WindowFromPoint/DragDetect API and code adaptions so it can be migrated to x64 more easily.
17-May-2023
- Support of icons and metafiles for the Picture property in the TbrButtonMenu of the ToolBar control.
Selecting such a picture file (design-time) will show a warning message that the menu theme will be removed. (HBMMENU_CALLBACK)
16-May-2023
- Usage of MIM_MENUDATA for TbrButtonMenus in the ToolBar control.
dwMenuData contains the ObjPtr() of the TbrButtonMenu.Parent. (TbrButton object)
This can be helpful in a WM_INITMENUPOPUP subclass to get a TbrButton of that menu handle.
11-May-2023
- Removed TPM_NONOTIFY for TbrButtonMenus in the ToolBar control.
This allows to subclass for WM_INITMENUPOPUP where wParam is the menu handle.
10-May-2023
- Included the Picture property in the TbrButtonMenu of the ToolBar control.
It supports 32bpp alpha bitmaps, but no icons. (MIIM_BITMAP)
Usage of MIIM_STRING instead of MIIM_TYPE/MFT_STRING for TbrButtonMenu.
14-Apr-2023
- Bugfix that the caret is not scrolled into view on SelStart/SelLength in the TextBoxW/RichTextBox control.
11-Jan-2023
- Unnecessary usage/variable of GetTopUserControl() removed in the ListView and SpinBox control.
10-Sep-2022
- Bugfix in the RightToLeft property in the RichTextBox control.
30-Aug-2022
- Critical bugfix in the StatusBar that the DrawState API is not allowed anymore to have lData as 0.
26-Aug-2022
- Improved the popup menu in the ToolBar to send WM_CANCELMODE upon recursive invocation.
This is useful in the .ContainerKeyDown function to close the popup menu when it's already dropped down.
22-Aug-2022
- Minor internal improvement in the StatusBar control.
15-Aug-2022
- Exit Property for same value in the Text property of a Panel in the StatusBar control.
27-Jun-2022
- Bugfix in the internal OLEDragOver in the ListView control for report view.
22-Jun-2022
- Bugfix in the WM_NCPAINT handler for a themed RichTextBox that scrollbars are not drawn.
30-May-2022
- Support for adding an .Image object from a PictureBox to an ImageList.
Prior to this update the .Image object needed to be peristed into the .Picture property of the PictureBox.
18-Feb-2022
- Included [_Default] property in ComboBoxW/FontCombo/VirtualCombo/ImageCombo.
- Included the GetTextRange property in the RichTextBox control.
04-Nov-2021
- FilterBar now receives focus in the ListView control on an MDI child form when the previous control was an intrinsic VB.CommandButton.
Reason is a unknown message &H105A pending on the MDI host form which brings focus back to the ActiveControl.
26-Oct-2021
- Bugfix on LvwListItems.Remove that no error was thrown for an non-existent numeric index.
For a string index/key an error was already thrown.
25-Oct-2021
- Internal improvements in the UpDown control.
- Included ES_AUTOHSCROLL for the edit window in the SpinBox control.
22-Oct-2021
- RichTextBox improvement when changing the RightToLeft property at run-time and when TextMode is RTF.
It will not stream RTF out before re-create and not stream RTF in afterwards. This way the \rtlpar is properly in place.
- Default value for MaxDate property in the DTPicker/MonthView control changed to 31-Dec-9999. (instead of 01-Jan-3000)
13-Oct-2021
- Included the run-time (read-only) TextLength property for the TextBoxW and RichTextBox control.
- The RichTextBox control now uses EM_GETTEXTEX/EM_SETTEXTEX instead of EM_STREAMOUT/EM_STREAMIN for the Text property.
- Included the UseCrLf property in the RichTextBox control.
It defaults to False (compatibility break in VBCCR) but fixes the Text to match to internal positions.
This affects the Text and TextLength property. (GT_USECRLF/GTL_USECRLF)
07-Sep-2021
- Fixed GDI leaks for DTPickerCalendarFontHandle, LinkLabelUnderlineFontHandle and ProgressBarFontHandle.
04-Sep-2021
- Bugfix in the internal CreatePrintJob method in the RichTextBox concerning the printing margins.
10-Aug-2021
- Removal of EM_EXLIMITTEXT (Flags = SF_RTF) in internal StreamStringIn/StreamFileIn in the RichTextBox control.
It was probably put there by error or by misunderstanding of the MSDN documentation.
05-Aug-2021
- Small bugfix in the PPCoolBarBands that child controls can be in the list that have no window handle. (e.g. Label)
This bug occured only when there were other child controls that have a window handle.
24-Jul-2021
- DrawStyle vbSolid now only when Single BorderStyle is set, otherwise it is vbInvisible. (refer to 21-Jul-2021 and 26-Mar-2021 update)
21-Jul-2021
- Bugfix in the LabelW control that the Single BorderStyle was not drawn anymore as of 26-Mar-2021 update.
15-Jul-2021
- Bugfix in the Text property of a Panel in the StatusBar control. (no immediate update of internal DisplayText)
08-Jun-2021
- CommandButtonW/CheckBoxW/OptionButtonW (vbButtonGraphical) can now render 32bpp alpha bitmaps and icons.
04-Jun-2021
- PPCoolBarBands can be switched now between CoolBars at design-time without issues.
- PPStatusBarPanels can be switched now between StatusBars at design-time without issues.
- PPToolBarButtons can be switched now between ToolBars at design-time without issues.
29-May-2021
- PPTabStripTabs can be switched now between TabStrips at design-time without issues.
- PPImageListImages can be switched now between ImageLists at design-time without issues.
23-May-2021
- Improvement in the WM_SETCURSOR in the CoolBar control.
This ensures the cursor handling for the child controls can walk up the chain properly.
15-May-2021
- Bugfix in the UseChevron property of a Band in the CoolBar control.
The .CXHeader member (RBBIM_HEADERSIZE) will now be reset (= -1) whenever the property is set.
- RP_CHEVRON/RP_CHEVRONVERT now included in the 'ImplementThemedReBarFix'.
12-Apr-2021
- Internal improvement in the StatusBar control.
26-Mar-2021
- UserControl.DrawStyle set to 5 = Transparent to avoid a wasted/unused GDI pen handle.
17-Mar-2021
- Improved CreateGDIFontFromOLEFont function.
15-Mar-2021
- HotTracking property improved in the ListView control.
01-Mar-2021
- Harmonization in the ContextMenu events. The X and Y parameters are now always originated to the control's hWnd.
Problem was in some controls which have child windows, resulted in confusing X and Y parameters.
19-Feb-2021
- Bugfix in the NodeClick/NodeDblClick event in the TreeView control.
Prior to this update it fired whenever hItem is <> 0.
Now it fires only when when in addition the hit-test flags are TVHT_ONITEMICON or TVHT_ONITEMLABEL. (like the MS TreeView does)
- Improved the Nodes.Clear method in the TreeView control.
The selected item is now removed before clearing to have no unnecessary TVN_SELCHANGING/TVN_SELCHANGED notifications.
18-Feb-2021
- Bugfix in the Left/Width property (Get) of a Panel in the StatusBar control.
16-Feb-2021
- Internal improvement in the TextBoxW control.
14-Feb-2021
- Bugfix in the FrameW control related to 13-Feb-2021 update.
13-Feb-2021
- Bugfix in the FrameW control that mouse events were in pixels instead of twips.
19-Jan-2021
- TabMinWidth property can be set to -1 in the TabStrip control.
23-Sep-2020
- No crash anymore when passing a vbNullString to the .SelText property in various controls. (e.g. TextBoxW)
Though, the fix concerns only Windows XP or below. Because as of Vista+ a NULL StrPtr() on EM_REPLACESEL does not cause harm.
18-Aug-2020
- Enhancement for the FrameW control.
- Access key now supported.
- TabIndex now supported. (important to be set meaningful so the access key works properly)
- Included UseMnemonic property. (not available in a VB.Frame, thus being an advantage)
15-Aug-2020
- Some minor internal improvements.
08-Aug-2020
- Bugfix in the OLEDropMode property in the FrameW control.
It was not possible to set it to OLEDropModeManual when windowless control(s) were contained in it.
- It is now possible for the TbrButtonMenus collection to change the key on a particular TbrButtonMenu in the ToolBar control.
06-Aug-2020
- It is now possible for the TbrButtons collection to change the key on a particular TbrButton in the ToolBar control.
29-Jul-2020
- Included new RefreshMousePointer function in Common.bas.
- All controls who receive CBN_DROPDOWN will call RefreshMousePointer function when current hCursor is NULL.
This is a unresolved misbehavior in user32.dll ever since.
26-Jul-2020
- Internal improvement in the SelText property in the RichTextBox control.
25-Jul-2020
- It is now possible for the CbrBands collection to change the key on a particular CbrBand in the CoolBar control.
23-Jul-2020
- Internal improvement in the SysInfo control.
20-Jul-2020
- It is now possible for the SbrPanels collection to change the key on a particular SbrPanel in the StatusBar control.
- Included the 'NodeRangeSelect' event in TreeView control with a Cancel parameter.
It fires for each node when a range of nodes is about to be selected. (like 'NodeBeforeSelect', but for shift-range selection)
16-Jul-2020
- The GetEmptyMarkup event supports now right-to-left in the ListView control.
15-Jul-2020
- Added optional 'Index' param in the .WorkAreas.Add method (to insert before index) in the ListView control.
12-Jul-2020
- Reworked the .WorkAreas property in the ListView control.
It is not anymore a property which just returns/sets an array of coordinates.
Instead it returns now a collection to the new 'LvwWorkAreas' class.
The collection is not 'private' and relies fully on LVM_GETWORKAREAS/LVM_SETWORKAREAS.
The .ListItemIndices of a 'LvwWorkArea' returns all list items that belongs to a work area.
Also the new .WorkArea property of a 'LvwListItem' returns the work area to which a list item belongs to.
09-Jul-2020
- Included MultiSelect property in the TreeView control.
It can be set to 'None' (Default), 'All', 'VisibleOnly', 'RestrictSiblings'.
The new 'SelectedNodes' property returns a collection to the new 'TvwSelectedNodes' class.
With this class the count and the selected nodes can be retrieved or enumerated.
The most recent select node has index 1 and the oldest select node has the last index. (sorted by history)
Included the 'AnchorItem' property which returns the node from which a multiple selection starts.
Included the 'SelectedIndex' function in the TvwNode class. It returns the index of the associated selected nodes collection.
05-Jul-2020
- Internal improvement in the TreeView control.
01-Jul-2020
- VirtualCombo control now works on comctl version 5.8x.
- ItemBkColor now fired in a virtual ListView control.
- Internal improvement for the HighlightHot property in the ListView control.
30-Jun-2020
- Included Left/Top/Width/Height (read-only) property in the ListSubItem of the ListView control. (LVM_GETSUBITEMRECT)
- Included function 'FindNearestItem' in the ListView control. (LVFI_NEARESTXY)
28-Jun-2020
- Included CacheVirtualItems event in the ListView control. (LVN_ODCACHEHINT)
- LVN_ODSTATECHANGED processed to enhance the ItemSelect event in a virtual ListView control.
- Renamed param 'Index' to 'ItemIndex' in the GetVirtualItem event in the ListView control.
Thus it does not clash anymore with the 'Index As Integer' param in a control array.
- ItemSelect event can now pass a ListItem 'As Nothing' in a virtual ListView control. (LVN_ITEMCHANGED, iItem = -1)
Because a virtual list view does only inform about each selected item and not for each deselected item.
- It is now possible for the TbsTabs collection to change the key on a particular TbsTab in the TabStrip control.
27-Jun-2020
- It is now possible for the LvwGroups collection to change the key on a particular LvwGroup in the ListView control.
- It is now possible for the ImlListImages collection to change the key on a particular ImlListImage in the ImageList control.
26-Jun-2020
- Included the FontWeight property in the CommonDialog class.
23-Jun-2020
- Included the VListBox control. (virtual list box control)
The name 'VirtualList' would confuse as this is a common word for a virtual list view.
Thus to avoid that the name must contain 'ListBox' and to keep it short then 'VListBox'.
- TabbedTextOut API now used in a Checkbox/Option Style ListBoxW control when UseTabStops property is True.
- Bugfix in the 32-bit scrolling in a multi-column ListBoxW and when WS_EX_LEFTSCROLLBAR is set.
- Text property in ListBoxW now data-bindable to a VB.Data control.
07-Jun-2020
- Internal improvement in the OptionButtonW control.
- Bugfix in the OptionButtonW control, the default value property should be False in Read/WriteProperties.
This change makes migration from VB.OptionButton to OptionButtonW easier at the cost of compatibility break to old OptionButtonW.
- Major internal improvement for MCIWnd as no WM_MOUSEACTIVATE overhead necessary anymore.
This results for 'ComCtlsTopParentValidateControls' being obselete and was removed!
02-Jun-2020
- Included the BeforeUserInput/AfterUserInput event in the DTPicker control.
The BeforeUserInput provides a hWndEdit and AfterUserInput is always fired, even when canceled.
Existent ParseUserInput event only fires if the user did not cancel.
01-Jun-2020
- Internal improvements in the ComboBoxW/FontCombo/VirtualCombo/ImageCombo controls.
28-May-2020
- WM_UNICHAR handler now supports surrogate pairs. (UTF32 conversion)
26-May-2020
- SimpleText property now uses SBT_RTLREADING in case RightToLeft is True in the StatusBar control.
- Changed IncrementalSearch event params in the VirtualCombo control.
25-May-2020
- Behavior bugfixes in the VirtualCombo control when Style is <> DropDownList.
- Included DrawMode property in the VirtualCombo control.
Only options are Normal and OwnerDrawFixed. (OwnerDrawVariable not possible due to LBS_NODATA restriction)
24-May-2020
- Included the VirtualCombo control. (super-classed combo box control with a no-data list box portion)
The .ListCount property is write-able and populates the list very quickly.
GetVirtualItem event retrieves the item strings.
IncrementalSearch/FindVirtualItem event can also be handled to enable full functionality.
21-May-2020
- Included the DrawMode property in the Slider control.
20-May-2020
- Major internal improvement for ImageCombo as no WM_MOUSEACTIVATE overhead necessary anymore.
- Improvement for the WM_NCPAINT handler in the RichTextBox control.
- Included a WM_NCPAINT handler for the HotKey control to resolve msctls_hotkey32 class bugs. (it behaves then like an edit control)
18-May-2020
- Included SortType LvwSortTypeLogical in the ListView control.
- Bugfix related to 08-May-2020 update. (WM_PRINTCLIENT in IPAddress control)
17-May-2020
- Bugfix in the Add method of LvwColumnHeaders in the ListView control.
- Included Text property (read-only) in the HotKey control.
- BackColor property in the HotKey control works now also when Enabled = False.
- Major internal improvement for HotKey as no WM_MOUSEACTIVATE overhead necessary anymore.
09-May-2020
- UserControl.Cls added in the UserControl_Paint event in the IPAddress control.
08-May-2020
- The IPAddress control supports now the WM_PRINTCLIENT message.
This was lost due to the rebuild from scratch as of 17-Apr-2020. (no longer use of SysIPAddress32 class)
07-May-2020
- Width property of a Panel in the StatusBar control not read-only anymore. It behaves as the MS StatusBar.
06-May-2020
- Removed the BackColor property in the DTPicker control for simplification.
It was anyhow not possible anymore as of Vista+ ..
04-May-2020
- Included Font/Text/TextColor property in the ProgressBar control.
Text placeholders: {0} = Value, {1} = Min, {2} = Max and {3} = Percent value between 0 and 100.
03-May-2020
- Major internal improvement for LinkLabel/MonthView/ComboBoxW/FontCombo as no WM_MOUSEACTIVATE overhead necessary anymore.
- Other minor internal improvements.
30-Apr-2020
- Internal improvement in the OptionButtonW control.
28-Apr-2020
- Property bag for the CheckBoxW/CommandButtonW/OptionButtonW/FrameW caption's property not unicode anymore. (like LabelW from beginning)
This avoids some .frx refs as there is no property page anyway for these available to input unicode in the IDE.
No problem occurs with existing property bags, so no compatibility break.
- Other minor internal improvements in the ListView control.
27-Apr-2020
- Bugfix in the ListView control.
- The ItemFocus event is now able to fire at first item insertion. (Index = 1)
- The ItemFocus event will not have an Item set as 'Nothing' anymore when clearing the list. (mis-feature)
26-Apr-2020
- Bugfix in the GetClipboardText function in Common.bas.
23-Apr-2020
- FrameW responds now to WM_SETTEXT/WM_GETTEXT/WM_GETTEXTLENGTH like the VB.Frame.
[...]
11-Nov-2012
- First release.
Warning: This Std-EXE version here is not really IDE-Safe as the design-time (form designer) user control subclassing (AddressOf pointer) can just become invalid when the IDE wants to. It is recommended to use the OCX version.
Re: CommonControlsEx (Replacement of the MS common controls)
The benefit is that these controls are linked to the comctl32.dll, that means they support the latest API calls, functions, properties and visual styles (themes).
The existing common controls 6.0 from MS are not linked to the comctl32.dll, so they doesn't support the visual styles (themes).
Reason why: The controls of the comct32.dll are compiled directly into the common controls 6.0 from MS, but as of state of a old version of comctl32.dll
Only the common controls 5.0 from MS are linked to the comctl32.dll, but the COM hull is very old and so they have a leak of the latest functions and properties. Also controls like the DTPicker, MonthView or UpDown are not included.
Re: CommonControlsEx (Replacement of the MS common controls)
Originally Posted by Krool
The benefit is that these controls are linked to the comctl32.dll, that means they support the latest API calls, functions, properties and visual styles (themes).
The existing common controls 6.0 from MS are not linked to the comctl32.dll, so they doesn't support the visual styles (themes).
Reason why: The controls of the comct32.dll are compiled directly into the common controls 6.0 from MS, but as of state of a old version of comctl32.dll
Only the common controls 5.0 from MS are linked to the comctl32.dll, but the COM hull is very old and so they have a leak of the latest functions and properties. Also controls like the DTPicker, MonthView or UpDown are not included.
Can you please change the OLEGuids.tlb to a new name to avoid conflicts with my existing OLEGuids.tlb in system32 folder?
Re: CommonControlsEx (Replacement of the MS common controls)
Excellent work!
Originally Posted by Hack
What is the benefit of using these over the existing controls?
Does each control have the same properties? Do they have new properties?
In addition to what Krool stated, some folks, myself included, prefer that their apps have no dependencies whatsoever.
The controls have most of the necessary (similarly named) properties and methods and many of them have some new ones as well (the VisualStyles property for instance).
Originally Posted by Jonney
Can you please change the OLEGuids.tlb to a new name to avoid conflicts with my existing OLEGuids.tlb in system32 folder?
Open CommonControlsEx.vbp in any text editor and edit this line:
Code:
Reference=*\G{5B1EACE0-EDEB-11E1-AFF1-0800200C9A66}#1.0#0#..\..\..\..\WINDOWS\system32\OLEGuids.tlb#OLE Guid and interface definitions
to:
Code:
Reference=*\G{5B1EACE0-EDEB-11E1-AFF1-0800200C9A66}#1.0#0#OLEGuids\OLEGuids.tlb#OLE Guid and interface definitions
On Local Error Resume Next: If Not Empty Is Nothing Then Do While Null: ReDim i(True To False) As Currency: Loop: Else Debug.Assert CCur(CLng(CInt(CBool(False Imp True Xor False Eqv True)))): Stop: On Local Error GoTo 0
Re: CommonControlsEx (Replacement of the MS common controls)
Originally Posted by Jonney
Can you please change the OLEGuids.tlb to a new name to avoid conflicts with my existing OLEGuids.tlb in system32 folder?
You can just rename the file "OLEGuids.tlb" at your own, for example to "OLEGuids2.tlb"
That is no problem, because the uuid and library name differs from the original. They can co-exist without conflicts.
You just need to re-register it in the IDE. (Project -> References... -> Browse for file)
Re: CommonControlsEx (Replacement of the MS common controls)
Originally Posted by Krool
You can just rename the file "OLEGuids.tlb" at your own, for example to "OLEGuids2.tlb"
That is no problem, because the uuid and library name differs from the original. They can co-exist without conflicts.
You just need to re-register it in the IDE. (Project -> References... -> Browse for file)
Thanks. I understood.
If you can add Unicode support, then those control can be used on PC with whatever locale setting.
How about others control built by CreateWindowEx such as Listview/Treeview? Listview support more new features such as Grouping now.
Re: CommonControlsEx (Replacement of the MS common controls)
Thanks for the update!
On Local Error Resume Next: If Not Empty Is Nothing Then Do While Null: ReDim i(True To False) As Currency: Loop: Else Debug.Assert CCur(CLng(CInt(CBool(False Imp True Xor False Eqv True)))): Stop: On Local Error GoTo 0
Re: CommonControlsEx (Replacement of the MS common controls)
Originally Posted by Krool
Update released.
All controls support now Unicode and some other minor improvements are done.
Fairly support Unicode.
But because of nature of MS BUTTON, it doesn't an unicode compatible control.
Never mind, just leave this because it's hard to fully support Unicode for a Command button.
DrawText hDC, StrPtr(Button.Caption), -1, RectText, DT_CALCRECT Or DT_WORDBREAK
Button.Caption can never be held Unicode string, internal conversion has been done before you call DrawTextW.
Re: CommonControlsEx (Replacement of the MS common controls)
Originally Posted by Jonney
Button.Caption can never be held Unicode string, internal conversion has been done before you call DrawTextW.
This function will retrieve any button's caption, even if VB displays their Unicode captions as ?????.
Code:
Private Declare Function DefWindowProcW Lib "user32.dll" (ByVal hWnd As Long, ByVal uMsg As Long, ByVal wParam As Long, ByVal lParam As Long) As Long
Private Function GetCaption(ByRef oButton As Object) As String
Const WM_GETTEXT = &HD&, WM_GETTEXTLENGTH = &HE&
Dim Button_hWnd As Long
On Error GoTo 1
Button_hWnd = oButton.hWnd
GetCaption = Space$(DefWindowProcW(Button_hWnd, WM_GETTEXTLENGTH, 0&, 0&))
DefWindowProcW Button_hWnd, WM_GETTEXT, Len(GetCaption) + 1&, StrPtr(GetCaption)
1 On Error GoTo 0
End Function
VB's Button controls (CommandButton, CheckBox or OptionButton) can actually contain Unicode captions (via DefWindowProcW + WM_SETTEXT). VB doesn't display them properly though.
On Local Error Resume Next: If Not Empty Is Nothing Then Do While Null: ReDim i(True To False) As Currency: Loop: Else Debug.Assert CCur(CLng(CInt(CBool(False Imp True Xor False Eqv True)))): Stop: On Local Error GoTo 0
Re: CommonControlsEx (Replacement of the MS common controls)
Thanks for including the StatusBar control!
Last edited by Bonnie West; Mar 1st, 2013 at 04:52 PM.
On Local Error Resume Next: If Not Empty Is Nothing Then Do While Null: ReDim i(True To False) As Currency: Loop: Else Debug.Assert CCur(CLng(CInt(CBool(False Imp True Xor False Eqv True)))): Stop: On Local Error GoTo 0
Re: CommonControlsEx (Replacement of the MS common controls)
its really an amazing work,god bless you.Bro can you add listview and treeview with displayable unicode support?
it will great achievment if it possible
Re: CommonControlsEx (Replacement of the MS common controls)
Update released.
ListView control is added.
Groups and 'Tile' View are for the moment not included.
It can replace 100% the ListView from „MSCOMCTL.OCX". (Exception: ToolTipText of the ListSubItems)
But it has also many properties, methods and events more than the original.
Re: CommonControlsEx (Replacement of the MS common controls)
Originally Posted by Krool
Update released.
ListView control is added.
Groups and 'Tile' View are for the moment not included.
It can replace 100% the ListView from „MSCOMCTL.OCX". (Exception: ToolTipText of the ListSubItems)
But it has also many properties, methods and events more than the original.
Thank you for additional Listview.
From Vista/Win7,MS added lots of new features into Listview, such as enhanced grouping, Checkbox on Header,etc.
Please consider adding checkbox and Text Edit for subitems.
Re: CommonControls (Replacement of the MS common controls)
Update released.
ImageList control is completly rewritten. (It is not compatible with the previous version)
It works now like the original ImageList from MS but with some improvements, for example that the Style flag of the ListImages Draw method can be combined with multiples styles. (That was not possible in the original ImageList from MS) or that the Overlay function returns an icon instead of a bitmap or that the BackColor can be turned on or off (UseBackColor property).
Re: CommonControls (Replacement of the MS common controls)
I must say I'm truly impressed. Were I still using VB6, this would have been an incredible source of knowledge. I tended to write alot of my own controls(I still do in VB.Net) and I always want to learn as much as possible about creating them. I thought I had a good handle on it it but one glance at your source code, and even what you described about them being linked to ComCtl32.Dll showed me just how little I actually knew about control authoring in VB6. I tip my hat to you sir.
Re: CommonControls (Replacement of the MS common controls)
Update released.
ImageCombo control is added.
The biggest advantage is that you can set the style property. ('DropDownCombo', 'DropDownList' or 'SimpleCombo')
That was not possible on the original ImageCombo control. (It was always as 'DropDownCombo')
Also new is the 'ItemDrag' event, similar to the one used in the ListView control.
Re: CommonControls (Replacement of the MS common controls)
Very, very good work. Many thanks to you. I do not like to link to Microsofts Ocx-files (Mscommctl.....). With your controls i don't need that. My exe work so without registrations on every PC. And: i can do more things. I can change the WM_PAINT - message to what i will. I can change the colors, i can add a picture, i can paint the control. I must only change your code a little bit. Awsome.
Thank you very much!!!!!
Re: CommonControls (Replacement of the MS common controls)
Thank you for the work - it's a lovely change CommonControls.
I have one problem, very often crashes when you compile an application (even an example), and the exe-file is created. And sometimes crashes when you press End in the course of the program.
It would be nice if the progress bar for added display of progress on the taskbar. An example can be found here http://sourceforge.net/p/audica/code...skBarList3.cls
Re: CommonControls (Replacement of the MS common controls)
Also for the beautiful subsclassing commandbutton think it will be good to make changes if there is a caption and a picture, you have the image on the left and the caption to the left of the picture. So the picture will not be imposed on the text.
Code:
Private Sub DrawButton(ByVal hWnd As Long, ByVal hDC As Long, Button As Object)
.....
If Not Button.Caption = vbNullString Or Len(Button.Caption) > 0 Then
Set ButtonFont = Button.Font
FontOld = SelectObject(hDC, ButtonFont.hFont)
RectText = RectClient
DrawText hDC, StrPtr(Button.Caption), -1, RectText, DT_CALCRECT Or DT_WORDBREAK
RectText.Right = RectClient.Right
If ButtonPic Is Nothing Then
RectText.Left = RectClient.Left
RectText.Top = ((RectClient.Bottom - RectText.Bottom) / 2) + 3
RectText.Bottom = RectText.Top + RectText.Bottom
Else
RectText.Left = CInt(Button.Parent.ScaleX(ButtonPic.Width, vbHimetric, vbPixels)) + 4
'RectText.Top = RectClient.Top '(RectClient.Bottom - RectText.Bottom) + 1
RectText.Top = (((RectClient.Bottom - RectClient.Top) - (RectText.Bottom - RectText.Top)) / 2) + RectClient.Top
RectText.Bottom = RectClient.Bottom
End If
DrawThemeText Theme, hDC, 1, ButtonState, StrPtr(Button.Caption), -1, DT_CENTER Or DT_WORDBREAK, 0, RectText
SelectObject hDC, FontOld
End If
CloseThemeData Theme
If Not ButtonPic Is Nothing Then
W = CInt(Button.Parent.ScaleX(ButtonPic.Width, vbHimetric, vbPixels))
H = CInt(Button.Parent.ScaleY(ButtonPic.Height, vbHimetric, vbPixels))
If Not Button.Caption = vbNullString Or Len(Button.Caption) > 0 Then
X = RectClient.Left
'Y = RectClient.Top ' + ((RectClient.Bottom - RectClient.Left - H) / 2)
Y = (((RectClient.Bottom - RectClient.Top) - H) / 2) + RectClient.Top
Else
RectClient.Bottom = RectText.Top
X = RectClient.Left + ((RectClient.Right - RectClient.Left - W) / 2)
Y = RectClient.Top + ((RectClient.Bottom - RectClient.Left - H) / 2)
End If
If Enabled = True Then
If Button.UseMaskColor = True Then
Call DrawTransparentPicture(ButtonPic, hDC, X, Y, W, H, WinColor(Button.MaskColor))
Else
ButtonPic.Render hDC, X, Y + H, W, -H, 0, 0, ButtonPic.Width, ButtonPic.Height, ByVal 0
End If
Else
Call DrawDisabledPicture(ButtonPic, hDC, X, Y, W, H, WinColor(Button.MaskColor))
End If
End If