Shaped Data in Access Question

  • Thread starter Thread starter ZivZ
  • Start date Start date
Z

ZivZ

If I am in my database and want to use the ADO shape in a
HeirarchicalFlexGrid, how would I go about using the service provider?
I tried using the DataSourceControl as in the examples, but it requires a
connection to be established which gives me an error about the database
being unavailable. I assume this is due to my already having it open, since
that is where I'm launching from, and that it is locked.
 
I assume this is due to my already having it open, since
that is where I'm launching from, and that it is locked.


I don't see why you can't still open the table. It is possible that you
opened the database exclusive, but there is no need too...

Check your open settings

tools->advanced->"default open mode = shared"

As for displaying data in a grid, perhaps using a listbox, or a continuous
form would work? (take a look at the following grids in ms-access here)

http://www.members.shaw.ca/AlbertKallal/Articles/Grid.htm
 
Back
Top