Problems with Midaslib

Asked

Viewed 1,190 times

3

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

I found that in the past Midas.dll was used..

3 answers

3

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

  • I am declaring in Unit and even then error appears.

  • @Flávionavesjr try to put Midas.dll in the project folder and in the System32 or Syswow64 folder

  • @Flávionavesjr If you are making an error when you declare Midaslib in Unit, it must be for the reason that our friend Andrey mentioned, it is missing declare the Midaslib in the library

3


Probably the directory where the Midaslib.pas file is located is not in the Library delphi.
Is usually: C:\Program Files (x86)\Embarcadero\Studio\15.0\source\data\dsnap
It shall operate from the Delphi 6.

  • Actually the name of the project is not midaslib, apparently Midaslib is a library and so I’m not getting, because it is not in this version of Delphi, something like that. I’m using the Tokyo version 10.2.

  • I know the name of your project is not Midaslib. Midaslib is really just a library, and as I mentioned in the answer, the path to which this library is Library of Delphi. You can check?

0

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

  uses
     midas,
     midaslib,

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

Browser other questions tagged

You are not signed in. Login or sign up in order to post.