Displaying 2 results from an estimated 2 matches for "exenam".
Did you mean:
exename
2010 Jan 21
0
[LLVMdev] [cfe-dev] FindExecutable
...th visual studio 2008.
> Stepping through the code, I notice that llvm::FindExecutable() is
> looking for "llc" not "llc.exe", which means, on windows at least,
> that it will *never* find the compiler. Would a simple fix be to just
> append a ".exe" to the ExeName parameter if the search fails and
> search again? Or is there a better approach?
>
> Cheers
>
> Jim
> _______________________________________________
> cfe-dev mailing list
> cfe-dev at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev
>
2006 Jun 20
1
DAO 3.5 and OLEAUT32.DLL troubles...
...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('SELECT Format(#1/1/2000#, "yyyy",
2) FROM TConfig', dbOpenDynaset, _, _);
// This always works:
//dao...