View Full Version : File not found: 'DsgnIntf.dcu'
SYNDROME
پنج شنبه 13 اردیبهشت 1386, 15:39 عصر
با سلام
من قبلا فایلهای Pas کامپونت NavBar را در دلفی 2005 نصب می کردم.
ولی حالا در هنگام نصب در دلفی 2006پیغام زیر را نمایش می دهد.
[Pascal Fatal Error] dxfmNavBarDsgnEditor.pas(49): F1026 File not found: 'DsgnIntf.dcu'
راه حل شما برای رفع مشکل بنده چیست؟
SYNDROME
پنج شنبه 13 اردیبهشت 1386, 15:50 عصر
با سلام
یادم رفت بگم از فایلهای
LibIntf
و
DsgnWnds
هم ایراد می گیرد.
hossein taghi zadeh
پنج شنبه 13 اردیبهشت 1386, 18:57 عصر
با سلام
یونیت DsgnIntf.pas یکی از یونیتهای دلفی 5 میباشد.
برای رفع اشکال شما باید با جایگزین کردن DesignIntf, DesignEditors به جای DsgnIntf مشکل را حل کنید.
SYNDROME
پنج شنبه 13 اردیبهشت 1386, 19:47 عصر
با سلام
دست شما درد نکند ولی دو فایل
LibIntf
و
DsgnWnds
را چکار کنم؟
لطفاً راهنمایی کنید.
Valadi
جمعه 14 اردیبهشت 1386, 22:41 عصر
این هم فایل یونیت DsgnIntf.pas
{-----------------------------------------------------------------------------
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/MPL-1.1.html
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either expressed or implied. See the License for
the specific language governing rights and limitations under the License.
The Original Code is: JvDsgnIntf.PAS, released on 2002-07-04.
The Initial Developers of the Original Code are: Andrei Prygounkov <a dott prygounkov att gmx dott de>
Copyright (c) 1999, 2002 Andrei Prygounkov
All Rights Reserved.
Contributor(s):
You may retrieve the latest version of this file at the Project JEDI's JVCL home page,
located at http://jvcl.sourceforge.net
description : interface to design-time routines
Known Issues:
-----------------------------------------------------------------------------}
// $Id: DsgnIntf.pas,v 1.12 2005/02/17 10:20:27 marquardt Exp $
unit DsgnIntf;
{$I jvcl.inc}
interface
uses
{$IFDEF UNITVERSIONING}
JclUnitVersioning,
{$ENDIF UNITVERSIONING}
Windows, Classes, Graphics;
{ DrawDesignFrame draws frame on the rect, Rect.
JVCL uses this function to drawing frame around controls at design-time }
procedure DrawDesignFrame(Canvas: TCanvas; Rect: TRect);
procedure DesignerNotify(ASelf, Item: TComponent; Operation: TOperation);
procedure DesignerModified(ASelf: TComponent);
procedure DesignerSelectComponent(ASelf: TComponent);
var
DrawDesignFrameProc: procedure(Canvas: TCanvas; Rect: TRect);
DesignerNotifyProc: procedure(ASelf, Item: TComponent; Operation: TOperation);
DesignerModifiedProc: procedure(ASelf: TComponent);
DesignerSelectComponentProc: procedure(ASelf: TComponent);
type
TGetProjectNameProc = function: string;
var
GetProjectNameProc: TGetProjectNameProc = nil;
{$IFDEF UNITVERSIONING}
const
UnitVersioning: TUnitVersionInfo = (
RCSfile: '$RCSfile: DsgnIntf.pas,v $';
Revision: '$Revision: 1.12 $';
Date: '$Date: 2005/02/17 10:20:27 $';
LogPath: 'JVCL\run'
);
{$ENDIF UNITVERSIONING}
implementation
procedure DrawDesignFrame(Canvas: TCanvas; Rect: TRect);
begin
if Assigned(DrawDesignFrameProc) then
DrawDesignFrameProc(Canvas, Rect);
end;
procedure DesignerNotify(ASelf, Item: TComponent; Operation: TOperation);
begin
if Assigned(DesignerNotifyProc) then
DesignerNotifyProc(ASelf, Item, Operation);
end;
procedure DesignerModified(ASelf: TComponent);
begin
if Assigned(DesignerModifiedProc) then
DesignerModifiedProc(ASelf);
end;
procedure DesignerSelectComponent(ASelf: TComponent);
begin
if Assigned(DesignerSelectComponentProc) then
DesignerSelectComponentProc(ASelf);
end;
{$IFDEF UNITVERSIONING}
initialization
RegisterUnitVersion(HInstance, UnitVersioning);
finalization
UnregisterUnitVersion(HInstance);
{$ENDIF UNITVERSIONING}
end.
Arman_1367
دوشنبه 31 اردیبهشت 1386, 21:26 عصر
با سلام برای نصب پکیجی درست نمایید و DesignIDE را به آن اضافه کنید فقط همین بعد کمپایل و بعد هم تمام می شود.
برای تمام پکیجهایی که در آنها ادیتور نصب می کنیم باید این پکیج اضافه شود تا ادیتور شما مشکلی پیدا نکند.
SYNDROME
دوشنبه 31 اردیبهشت 1386, 21:38 عصر
با سلام
تاریخ تاپیک را یک نگاه بکن.
vBulletin® v4.2.5, Copyright ©2000-1404, Jelsoft Enterprises Ltd.