Hi,
after you login with email & pwd on
, after the promotions you'll find the TMS Component pack : help files
with "TMS TPlanner/TDBPlanner Developers guide (12/16/2002 5:14:27 PM)".
I'm using the dbPlanner with D7 and Access via ADO + JetEngine, and I have had no problems.
This works:
AdoConnection1.Connected:=False;
//Database parameters
AdoConnection1.ConnectionString:='Provider=Microsoft.Jet.OLEDB.4.0;User ID=Admin;'+
'Data Source='+ExtractFilePath(Application.ExeName)+'Agenda.mdb;'+
'Mode=Share Deny None;Extended Properties="";Persist Security Info=False;'+
'Jet OLEDB:System database="";Jet OLEDB:Registry Path="";Jet OLEDB

atabase Password="";Jet OLEDB:Engine Type=5;Jet OLEDB

atabase Locking Mode=1;'+
'Jet OLEDB:Global Partial Bulk Ops=2;Jet OLEDB:Global Bulk Transactions=1;Jet OLEDB:New Database Password="";Jet OLEDB:Create System Database=False;'+
'Jet OLEDB:Encrypt Database=False;Jet OLEDB

on''t Copy Locale on Compact=False;Jet OLEDB:Compact Without Replica Repair=False;Jet OLEDB:SFP=False';
ADOConnection1.Provider:='Microsoft.Jet.OLEDB.4.0';
ADOConnection1.Connected:=True;
//Query for data
QApp.Active:=True;
//"ItemSource" for the planner with DataSource linked to the TQuery QApp (via a TDataset QAppSrc)
DBDaySource1.Day := QApp.FieldByName('FromDate').AsDateTime; //Start at the first appointment
DBPlanner1.Realign;
Hope this helps.
Ciao,
Geppo Darkson.