[RESOLVED] Alternative to ListView
Hi there,
I have a problem which is ruining my life. (no it's not personal)
I have a table of around 5 columns and 30-40 rows, and I was programming it back home and the ListView control seems perfect. Then i bring it to work and realised that the office here does not have the VB common controls installed. I tried downloading the mscomctl.ocx and referencing my project to it but it keeps saying "Method or Data member not found"
I am clueless on how to sort this silly VBA problem out.
Is there a better way to deal with the data? The table row is dynamic and i need to be able to change it at runtime.
Re: Alternative to ListView
You've put MSCOMCTL.OCX into the System32 folder, yes? And registered it using regsvr? I can't see why that shouldn't work.
I presume the error is occurring on some of the listview methods? Can you add a listview to a new project successfully; I have encountered situations before where existing projects aren't welcomed but you can add a control to a new project ok...
zaza
Re: Alternative to ListView
regsvr c:\winnt\system32\MSCOMCTL.OCX
it says
cannot find regsvr etc etc..
Re: Alternative to ListView
It's regsvr32 :)
And I don't think you even need the full path if it's in the System32 folder.
Re: Alternative to ListView