Displaying 1 result from an estimated 1 matches for "createengin".
Did you mean:
createengine
2006 Jun 20
1
DAO 3.5 and OLEAUT32.DLL troubles...
...his a known bug or should I post it in the Bugzilla?
bye!
Paolo
This is an extract of the procedure that causes the problem:
procedure TForm1.Button1Click(Sender: TObject);
var
daodbeng: DAODBEngine;
daodb: DAODatabase;
daors: DAORecordset;
begin
try
daodbeng:= OpDAO35.CreateEngine; // Crea il DBEngine, e passa
internamente la licenza
daodb:=
daodbeng.OpenDatabase(ChangeFileExt(Application.ExeName, '.mdb'),
false, false, '');
// This works under Windows, fails under Wine woth builtin
oleaut32.dll:
daors:= daodb.OpenRecordset('SELEC...