|
uses
Business.System, Business.Model, Business.Forms,business.Data,TestWin;
type
TDDSHCT = class(DDSQ.TMainForm)
procedure TDDSHCT.Button4Click(Sender: TObject);
var twindow:TTestWin;
begin
Inherited;
twindow:=TTestWin.Create(Self.Context);
twindow.show();
end;
[错误]Biz:\XSGLXT\XSDD\DDSH.FUNC.DIR\DDSHCT.Form.pas(6, 66): 找不到命名空间“TestWin”(是否缺少 程序集引用?)
为什么错呢?我的主窗体和想调用的窗体TestWin都在同一个业务功能下也不能成功,另我写的代码有问题么, |
|