Use a ListBox as a poor man’s grid

Use a ListBox as a poor man’s grid

You can easily create columns of data in a ListBox control by setting its tab stop at appropriate positions. This way, you can use a ListBox control as a sort of grid control with (very) limited functionality, but without using third-party controls.

You can set ListBox’s tab stop by sending the control a LB_SETTABSTOPS message, where wParam contains the number of desired tab stops, and lParam points to the first element of an array of Long values that contains the new tab stop positions. The following reusable routine does the trick

Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal _    hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, _    lParam As Any) As LongConst LB_SETTABSTOPS = &H192' Set tab stops positions for a ListBox control ' Each element of the array is expressed in dialog units,' where each dialog unit is 1/4 of the average character width.Sub ListBoxSetTabStops(lb As ListBox, tabStops() As Long)    Dim numEls As Long    numEls = UBound(tabStops) - LBound(tabStops) + 1    SendMessage lb.hwnd, LB_SETTABSTOPS, numEls, tabStops(LBound(tabStops))End Sub

Note that the values in the array are expressed in dialog units, where the average character’s width corresponds to 4 dialog units. The following code example set the tab stop position at (approximately) the 10th, 18th and 25th character:

Dim tabs(2) As Longtabs(0) = 40   ' 10*4tabs(1) = 72   ' 18*4tabs(2) = 100  ' 25*4ListBoxSetTabStops List1, tabs()

Once you have set the tab stops appropriately, you just add new items to the ListBox, where the values in each column should be separated by vbTab characters:

List1.AddItem "col 1" & vbTab & "col 2" & vbTab & "col 3" & vbTab & "col 4"

Share the Post:
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

ransomware cyber attack

Why Is Ransomware Such a Major Threat?

One of the most significant cyber threats faced by modern organizations is a ransomware attack. Ransomware attacks have grown in both sophistication and frequency over the past few years, forcing

data dictionary

Tools You Need to Make a Data Dictionary

Data dictionaries are crucial for organizations of all sizes that deal with large amounts of data. they are centralized repositories of all the data in organizations, including metadata such as