I have created some paradox tables through the Database Desktop. I'm now trying to connect to these tables and I'm having problems.
I keep getting the error "Operation must be performed on the current session" when I try to connect to the database. If I have the TDatabase component on the main form, if after getting this error I try a second time, the form opens!
I have frmMain with a TMainMenu component.
I have frmVolunteerInfo that I would like to use to show and enter new volunteers into the tables.
I have an ODBC connection to the directory where all the tables are saved.
What is the easiest and correct way to set up the database/table/query components with local Paradox tables?
Please Help!!!
here's all I'm trying to do:
leslie
I keep getting the error "Operation must be performed on the current session" when I try to connect to the database. If I have the TDatabase component on the main form, if after getting this error I try a second time, the form opens!
I have frmMain with a TMainMenu component.
I have frmVolunteerInfo that I would like to use to show and enter new volunteers into the tables.
I have an ODBC connection to the directory where all the tables are saved.
What is the easiest and correct way to set up the database/table/query components with local Paradox tables?
Please Help!!!
here's all I'm trying to do:
Code:
procedure TfrmMain.AddNew1Click(Sender: TObject);
begin
with TfrmVolunteerInfo.Create(frmMain) do
begin
Show;
end;
end;
leslie