|
发表于 2007-7-17 10:00:45
|
显示全部楼层
unit MainForm;
interface
uses
Business.System, Business.Model, Business.Forms, Business.Data;
type
TMainForm = class(TForm)
FuncBroker: TFuncBroker;
InfoBrokerDDSQB: TInfoBroker;
ControlBar: TControlBar;
DataNavigator: TDataNavigator;
DocViewBar: TDocViewBar;
Panel: TPanel;
DocViewDDSQB_DDBG: TDocView;
Panel1: TPanel;
Edit1: TEdit;
DataSetBroker1: TDataSetBroker;
procedure BizFormShow(Sender: TObject);
private
{private declarations}
public
{public declarations}
end;
implementation
procedure TMainForm.BizFormShow(Sender: TObject);
begin
DocViewDDSQB_DDBG.SetFocus;
end;
end. |
|