Determine Which ListView Column Was Checked

Determine Which ListView Column Was Checked

When using the ListView control in list mode (Listview.View = lvwList), no property indicates which column the user clicked on within the selected row. The ListView’s HitTest method returns only a reference to the ListItem the user clicked on, not the specific subitem. Use the SendMessage API function in the ListView’s MouseUp or MouseDown event to provide this information:

 Private Declare Function SendMessage Lib _	"user32" Alias "SendMessageA" (ByVal hWnd As _	Long, ByVal wMsg As Long, ByVal wParam As _	Long, lParam As Any) As LongPrivate Const LVM_SUBITEMHITTEST As Long = 4153Private Type POINTAPI	X As Long	Y As LongEnd TypePrivate Type LVHITTESTINFO	pt As POINTAPI	lngFlags As Long	lngItem As Long	lngSubItem As LongEnd TypePrivate Sub ListView1_MouseUp(Button As Integer, _	Shift As Integer, X As Single, Y As Single)	Dim hti As LVHITTESTINFO	Dim lngRet As Long	hti.pt.X = X / Screen.TwipsPerPixelX	hti.pt.Y = Y / Screen.TwipsPerPixelY	lngRet = SendMessage(ListView1.hWnd, _		LVM_SUBITEMHITTEST, 0&, hti)	Debug.Print "Row=" & hti.lngItem,	Debug.Print "Col=" & hti.lngSubItemEnd 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