Get full control on the text typed in a ListView’s item

Get full control on the text typed in a ListView’s item

The ListView control exposes the AfterLabelEdit event to let the programmer validate the text entered in a ListItem, but there is no way to trap keys as they are typed by the user. This prevents you from discarding unwanted characters while the user types them.

You can work around this problem by subclassing the Edit control that the ListView control creates when entering the node edit mode. The following code uses the MSGHOOK.DLL library, that you can download from the FileBank on this site, to discard digits and convert all text to uppercase:

' REQUIRES THE MSGHOOK.DLL LIBRARYPrivate Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal _    hWnd As Long, ByVal wMsg As Long, ByVal wParam As Long, _    lParam As Any) As LongConst LVM_FIRST = &H1000Const LVM_GETEDITCONTROL = (LVM_FIRST + 24)Dim WithEvents TVHook As MsgHook' start subclassing of the Edit control used when in edit modePrivate Sub ListView1_BeforeLabelEdit(Cancel As Integer)    Dim editHWnd As Long        ' get the handle of the TreeView's Edit control    editHWnd = SendMessage(ListView1.hWnd, LVM_GETEDITCONTROL, 0, ByVal 0&)    ' subclass it    LVHook.StartSubclass editHWndEnd Sub' stop subclassing when exiting edit modePrivate Sub ListView1_AfterLabelEdit(Cancel As Integer, NewString As String)    LVHook.StopSubclassEnd SubPrivate Sub Form_Load()    Set LVHook = New MsgHookEnd Sub' discard digits as they are entered by the user' and convert all text to uppercasePrivate Sub LVHook_BeforeMessage(uMsg As Long, wParam As Long, lParam As Long, _    retValue As Long, Cancel As Boolean)    If uMsg = WM_CHAR Then        ' wParam contains the character code        If wParam >= 48 And wParam <= 57 Then            ' discard digits            Cancel = True        ElseIf wParam >= Asc("a") And wParam <= Asc("z") Then            ' convert to uppercase            wParam = wParam - 32        End If    End IfEnd Sub

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes