9900kf
9900kf

Reputation: 87

NMUUE library for Delphi 7

I' m trying to run a project on Delphi 7 and getting file not found error 'NMUUE.dcu'. It is needed to create TNMUUProcessor object. Reinstalling doesn't help . So where can I find this library for my project?

Upvotes: 0

Views: 530

Answers (2)

David Heffernan
David Heffernan

Reputation: 613272

That component is part of FastNet. It is not distributed with Delphi 7: http://edn.embarcadero.com/article/29766

The Fastnet components are no longer bundled with Delphi. It appears Netmasters does have a version compatible with Delphi 7 which can be purchased at: http://www.netmastersllc.com/

You probably will need to upgrade to a paid version of FastNet that supports Delphi 7, if such a thing can still be obtained, or switch to Indy.

On the other hand, if you are not actually doing anything more than uuencoding you could easily find a Delphi uuencode function with a websearch.

You probably ought to try to understand your program and what its requirements are before you proceed much further. Blindly solving missing dependencies without understanding why your program needs them is usually a recipe for future pain.

Upvotes: 2

Andy_D
Andy_D

Reputation: 2350

I assume you've migrated this project from a lower version of Delphi. If I remember correctly, NMUUE is the UUE encoding unit for the Fastnet internet components. These didn't ship with Delphi 7 (I think Delphi 5 was the last version that supported them). I'm not sure if there's a download available for it still as NetMasters have gone out of business. Your best bet would be to migrate the project to use something like Indy.

Upvotes: 3

Related Questions