EResNotFound is the exception class for unlocatable resources.
EResNotFound = class(Exception);
class EResNotFound : public Exception;
EResNotFound is raised when a specified resource (such as a form or bitmap) can't be found in a form file or a resource file, or when the resource is not linked into the application.
If you receive this exception on startup of an application, or when you create a form, check the form's unit file for the compiler directive that links in the form file.
In Delphi, this directive is {$R *.dfm} (for VCL forms)
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
What do you think about this topic? Send feedback!
|