Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 4 of 4 total
Thread Cannot FInd Table
Tue, Jan 10 2006 2:09 PMPermanent Link

Stats D7 Ent
DBISAM 4.22 Build 3
Problem. I use the procedure below to Open my tables.  When I get to the
first table in the creation List I get an error stating the file does not
exist. The only way I can resolve this is delete the sessions compoonent put
a new one into the Datamodule , hook up all of the tables and Queries
components.  This is the 3rd time this happened.  This may be a red herring
but it may have started after the last build was installed.  BTW I'm tired.

Any suggestions would be greatly  appreciated.  OH and not "get some sleep"
Smile

Allan

procedure TDMDiet.OpenFiles;
var
   i: integer;
begin
   for i := 0 to ComponentCount - 1 do
   begin
       if Components[i] is TDBISAMTable then
           try
               TDBISAMTable(Components[i]).Active := True;
           finally
           end
   end;
end;

Tue, Jan 10 2006 2:24 PMPermanent Link

Roy Lambert

NLH Associates

Team Elevate Team Elevate

brock


When you wake up check the database/databasename


Roy Lambert
Tue, Jan 10 2006 2:57 PMPermanent Link

Roy;
Smile
thats the thing. Database name is OK. I can set the Active proprty on any
of the table or query components to True in design time!!

Allan

"Roy Lambert" <roy.lambert@skynet.co.uk> wrote in message
news:53CEF080-4118-48C7-BD6C-F498A37440E9@news.elevatesoft.com...
> brock
>
>
> When you wake up check the database/databasename
>
>
> Roy Lambert
>

Tue, Jan 10 2006 3:22 PMPermanent Link

Stop the presses.. Stope the presses. DUH!!! I blew away my .rec file and
the exe was being compiled in another folder

Damm .. I have having to confess that!!

Smile

Allan
<brock@ns.sympatico.ca> wrote in message
news:D94FF8FA-CE7D-4CE8-B2D1-8BE82D25BE89@news.elevatesoft.com...
> Roy;
> Smile
>  thats the thing. Database name is OK. I can set the Active proprty on any
> of the table or query components to True in design time!!
>
> Allan
>
> "Roy Lambert" <roy.lambert@skynet.co.uk> wrote in message
> news:53CEF080-4118-48C7-BD6C-F498A37440E9@news.elevatesoft.com...
> > brock
> >
> >
> > When you wake up check the database/databasename
> >
> >
> > Roy Lambert
> >
>
>

Image