A button-like control used to manage (and show) a color (WindowLess version) If you need a Non WindowLess version of this control (because you need to put it over other Non WindowLess controls) check the [ctlColorXP] control Check common properties here
Unicode API window that you can use like a normal Device Context. You can draw into its area using normal API functions and you can receive events with Unicode data for KeyPress, KeyDown, KeyUp. The "Label Editor" dialog used in our Dynamic HTML Editor program uses a ctlUniCanvas object to catch Unicode keys ;-) This control supports IME input. Check common properties here
Represents a Windows list view control, which displays a collection of items that can be displayed using one of four different views Check common properties here
An Unicode component that permits you to organize your MDI child windows using a Top or Bottom tabulator like the Microsoft Visual Studio environment. Check common properties here
Transforms a standard VB6 menu into an Unicode Icon menu; as the VB6 menu is ANSI, the idea is to put Unicode data in ANSI format into menu item texts. This is possible by encoding Unicode data to UTF8 or Hex. The menu will translate this encoded data into Unicode at runtime (see [StringMode] property) Check common properties here
Unicode status bar; this is a container control so you can place other controls inside it; in the screenshot below we placed a progress bar into it. Check common properties here
Extremely powerful control that permits you to change the look and feel of your applications using just no code ;-) It works changing the visual aspect of Unicode Controls of this library.
By default every color property of this control has the value -1& that means "don't make any change to controls". By default the font face of controls is changed to "Arial Unicode MS", remove it in order to avoid the change of fonts.
If you need to style Hexagora Unicode Controls contained into your custom controls see at the end of this page. Check common properties here
Unicode text highlight component; can highlight HTML generic code (with php, asp, or javascript sections) or pure php, asp or javascript code. Supports multiple undo and tab line indentation. Internally it uses a ctlUniRichTextBox control so refer to its documentation for details on property methods missing on this page Check common properties here
Unicode toolbar with modern style, it is a container control so you can place other controls inside it and let the control align them Check common properties here
Unicode Tooltip Manager, permits you to enable and manage Unicode tooltips used by controls You can also use it in your usercontrols/forms (use the [SetTip] method in the MouseMove event) Check common properties here
Extremely powerful Unicode Treeview control, with multi-selection, derived from ucTreeview 1.3.
This controls doesn't use Classes for node management, a node is an handle (long value) and you can retrieve node properties by passing its handle. Check common properties here We have already planned the construction of a new TreeView control, 100% compatible with the standard VB6 one
This class implements a fast index-based Collection for managing Objects; when accessing Items by Index this class is 100x faster than a standard VB6 Collection
This class permits you to manage an API Device Context in a safe way and provides conversion functions for VB6. Similar to the [clsMemDC] class but uses a DibSection instead of a Windows Bitmap for image management so it is possible to create images with different resolutions. The [clsMemDC] class can only create images with the same resolution of the screen
This class permits you to manage UNICODE .ini files; very useful for multi-language applications; it uses Standard Windows Unicode API and supports UNC paths.
This class permits you to manage Unicode .ini files encoded in UTF8, Unicode UTF16 and ANSI. It is possible to use characters like spaces, ", etc... and you can avoid the use of sections. It is possible to read files up to 50 MB (limited by code).
Permits you to assign a custom font to a specified Windows Device Contect Automatically destroys the created font and restores the old one on the DC when terminates
The Graphics class provides methods for drawing lines, curves, figures, images, and text. A Graphics object stores attributes of the display device and attributes of the items to be drawn. Check MSDN documentation here
Manages automatically a GDIPlus session; this class is not creatable; use the [clsCommonWrapper.GetGDIPlusSession] for getting the instance and use internal functions
This class permits you to manage an API Device Context in a safe way and provides conversion functions for VB6. Similar to the [clsDIBSection] class but uses a Windows Bitmap inside This class can only create images with the same resolution of the screen
This class permits you to translate your forms automatically (by applying UNICODE captions and tips to your controls and to the form) using a external .ini file created in a certain way.
This class contains functions that will pemit you to read information about Dual-Monitor or Multi-Monitor systems. You'll be able to read info for every monitor attached to a PC.
A very powerful class used to search files; supports asynchronous mode and recursion on subdirectories. Returns a [cArrayList] class of [clsSearchFilesFInfoAL] classes that you can use to get a lot of file information. Supports UNICODE and UNC paths.
This class permits you to add, remove or change icons or tip messages on the tray area. When the class terminates, all added icons will be removed from the Tray Area automatically See the "Sample 1" for a working example.
This class permits you to manage UNICODE/ANSI/UTF8 files. Supports extended Unicode and UNC path (up to 32000 characters, with Unicode path and filenames). Methods starting with "st_" work without an opened file handle and should be treated as "Static"
An item in a ListView control that contains the index of icons associated with it, text, and an array of strings representing subitems that are displayed in Report view.
Defines an interface that you must implement in your classes to be able to subclass windows using API and the [cSubClass.AttachMessage] utility function