devxlogo

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"

See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist