Link to home
Start Free TrialLog in
Avatar of stellaartois
stellaartoisFlag for United Kingdom of Great Britain and Northern Ireland

asked on

VB6 List View with columns

Hello,

In VB6... How do I create a list like the one in this image and how do I populate it.

http://img262.imageshack.us/img262/668/47654679wl3.gif

For example if I wanted the following information as a table within my visual basic program

Log Number |  Logged By  |  Date
--------------------------------------------
001                John               14/10/2008
002                Steve             13/10/2008
003                Helen             12/10/2008

Thank you
Avatar of FER_G
FER_G
Flag of Argentina image

stellaartois;
I'm afraid to say, that the image is a grid control, not a list, so it's simpliest...
You can use a MSFlexGrid Control and add each cell to the grid easily

Msflex.AddItem "cell1" & vbTab & "cell2" & vbTab & ... "celln"

FerG
Saludos
--
Ing. Fernando D. Giletta
San Fco. Cba. Arg.
Avatar of stellaartois

ASKER

Hi there,

I have found the MSFlexGrid within the component menu.

It shows titles on columns and rows, my friend says that you have to set it to "Reporter" mode but I dont know where this setting is.

I have looked in the propeties pane and the properties menu that is accessed by right mouse clicking the object.

Thanks for further assistance.

ASKER CERTIFIED SOLUTION
Avatar of FER_G
FER_G
Flag of Argentina image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial