S
sying
Unregistered / Unconfirmed
GUEST, unregistred user!
如题,代码如下:
procedure TFmCustFaceMain.cxDBButtonEdit17PropertiesButtonClick(
Sender: TObject; AButtonIndex: Integer);
begin
ut3calendar.ShowCalendar(cxDBButtonEdit17);
end;
这是主窗体,这个事件就是调用另外一个窗体。
下面是被调用窗体。
procedure ShowCalendar(EditTmp :TcxDBButtonEdit);
begin
fm3calendar:= Tfm3calendar.Create(nil);
with fm3calendar do
try
showmodal;
finally
Free;
end;
end;
我现在就发愁这个EditTmp是个局部变量,如何在关闭事件中获得,并且将数据返回到主窗体中的那个被点击的控件?
procedure TFmCustFaceMain.cxDBButtonEdit17PropertiesButtonClick(
Sender: TObject; AButtonIndex: Integer);
begin
ut3calendar.ShowCalendar(cxDBButtonEdit17);
end;
这是主窗体,这个事件就是调用另外一个窗体。
下面是被调用窗体。
procedure ShowCalendar(EditTmp :TcxDBButtonEdit);
begin
fm3calendar:= Tfm3calendar.Create(nil);
with fm3calendar do
try
showmodal;
finally
Free;
end;
end;
我现在就发愁这个EditTmp是个局部变量,如何在关闭事件中获得,并且将数据返回到主窗体中的那个被点击的控件?