This isn't specifically Project but is vba, you folks would know.

J

John Sitka

I'm having problems with runtime expose of the datasource property on data aware controls.
I have a recorset, in this case derived from Jet provider with extended properties set to Excel.
It is navigable. but if for example I put a datagrid on a userform I can't set the datasource of the
grid to the recordset. I think I've pulled in the correct references. Intellisence understands the concept
at designtime. But when run non of the objects support the datasource property?
 
J

John Sitka

Got it after a way too loooong time.
Wasn't calling the Set directive (argh, too many syntaxi)
also binding occurs automatic after an explictly setting the datagrid.datasource = nothing
then resetting to the recordset.
Set datagrid.datasource = Nothing
Set datagrid.datasource = recordsetobj

got that from http://support.microsoft.com/default.aspx?scid=kb;en-us;189998
noit sure what it means, but whatever.


Thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top