VB6 multiple column list, like Outlook or Address Book
Hi all.
I am making an address book module for an application and I would like to use a listview similar to those at Outlook or any other application (consider Kazaa or eMule for instance, where all downloading items are in a list, with multiple columns).
I came across with VB Accelerator's S-Grid and I think that it would fit my needs, but the ocx gives an error (Runtime error '0') at initialization.
It seems that I can't find a control to do such a simple job!
If anyone knows about a control to fit my needs, please let me know.
Thanks in advance,
Fábio Silva
Re: VB6 multiple column list, like Outlook or Address Book
Did you register the control before you used it?
VB has a Flexgrid called MSFlexgrid and MSHFlexgrid that are pretty good.
Search the forums. There are lots of examples.
Re: VB6 multiple column list, like Outlook or Address Book
Jeez!! What a jerk that I am..!!!
Thanks dglienna, I haven't registered the control yet! I am new to ActiveX controls..Now the control works fine ;) Thanks a lot.
I've used the FlexGrid already, but I've droped it 'cause I couldn't make it do what I want...
Thanks again! ;)
Re: VB6 multiple column list, like Outlook or Address Book
One more thing, by the way...
When I create the setup for a clean instalation in another PC, how will I register the control? Do I have to register it with a Shell command? Something like:
VB Code:
Shell("regsvr32 control.ocx")
Or does the setup take care of that?