ComboBox with icons
Each ComboBox item with own icon? No problem. Using OwnerDraw style, we can do almost anything.
Each ComboBox item with own icon? No problem. Using OwnerDraw style, we can do almost anything.
The default ListBox items alignment is LeftJustify. There is no Object Inspector property to change this, so if we need to right justify items, we must use a simple trick.
Hints are everywhere. Almost every GUI element in Windows can be “hinted”. When user hover mouse over element, small yellow bubble with help text pops up. Is it possible to… Read more »
Colored lines in listbox are more user-friendly and easy to read. Here is how to do it…
When you minimize modal window, this window is “hidden” behind (or below) application main form. Using this simple trick, we can minimize also the main application window together with modal… Read more »
It’s quite cool efect, but this is also effective way to save some space in your application GUI. Let’s place progressbar of some time-consuming function right into the button, which… Read more »
First of all, set ListView to vsReport style and fill in some data. OnColumnClick and OnCompare events will do the rest.
If you want to “lock” your application window position and prevent user from moving it, it’s really simple.
The standard system font size in Windows XP is 96 dpi. You can also use 120 dpi, if your prefer bigger fonts or you can set this font size to… Read more »
When you rightclick application title bar (or leftclick icon on title bar), the system menu will appear. Here are common commands to close, minimize or maximize window. But you can… Read more »