Problems with Midaslib

3

I'm trying to run an application in Delphi, but every time I try to compile a "Midaslib 'not found" error appears, is there any way to put this library manually?

I checked that midas.dll was once used.

    
asked by anonymous 24.10.2017 / 17:38

3 answers

3

Probably the directory where the MidasLib.pas file is located is not in Library of Delphi. Usually it is: C:\Program Files (x86)\Embarcadero\Studio.0\source\data\dsnap
It should work from Delphi 6 .

    
24.10.2017 / 17:49
3

In the main class, declare in unit the MidasLib will no longer alert you about the dll.

    
24.10.2017 / 17:48
0

But is it on your computer or on a client computer? What you usually do is have to put the

  uses
     midas,
     midaslib,

in the project code (.dpr file of your project). You can get there by clicking on the project name and doing View Source .

    
24.10.2017 / 19:40