Send a suggestion!

We're building a brand new version of the site, and we'd love to hear your ideas

Members

Technology Zones

IBM Learning Center

Articles

Hosted By

MaximumASP

Info

10Tec Company Profile

photo 10Tec Company (10Tec)
04 Aug 2002
Kiev, Ukraine United Kingdom

http://www.10Tec.com/
Contact memberContact this Member Edit ProfileEdit my profile

This user has contributed 0 articles, 3 code samples and posted 0 messages in our discussion forums.

Technology Interests

      Code Samples

    • Adding multiline balloon tooltips to ListView item

      by 10Tec

      To create tooltip for list-view items, the code checks the item under the mouse pointer in the MouseMove event of the control. It uses for this purpose the LVM_HITTEST message that returns the index of the item at the specified position. The message is sent using the SendMessage API function. The lParam parameter of the function contains the reference to the LVHITTESTINFO structure; you must fill in the pt field of this structure with the coordinates of the mouse pointer before you invoke SendMe. Read full article

    • Adding real Win32 tooltips for windowless controls

      by 10Tec

      The problem with Win32 tooltips is that you can attach it only to a control that provides the hwnd property returning the Win32 handle of the control. The following trick allows you to create real Windows tooltips for VB intrinsic controls which do not have this property.. Read full article

    • ListBoxHScroll class

      by 10Tec

      Adding the horizontal scroll bar to a list box dynamically taking into account its font (using the IFont interface) and the vertical scroll bar visibility (by analyzing the WS_VSCROLL flag of the listbox styles). Read full article