E
everhappy
Unregistered / Unconfirmed
GUEST, unregistred user!
function ReadFlashData(ComDevice:String;
Stream:TStream):Boolean;
begin
with TDialogCommGetData.Create(Application)do
...
这里的Application指的是什么?当前工程?
function ShowExecuteDialog(Caller:TForm;
CancelBoolean):HWND;
var
F:TDialogExecuteCommand;
begin
F:=TDialogExecuteCommand.Create(Caller);
什么时候在create函数中调用调用的句柄?有时还用Create(nil)什么的?
procedure TFormMain.btnManagerClick(Sender: TObject);
var
F:TFormManager;
begin
F:=TFormManager.Create(Self);
Self应该是指TFormManager而不是TFormMain?
什么都不懂,读不知道怎么提问了:)
Stream:TStream):Boolean;
begin
with TDialogCommGetData.Create(Application)do
...
这里的Application指的是什么?当前工程?
function ShowExecuteDialog(Caller:TForm;
CancelBoolean):HWND;
var
F:TDialogExecuteCommand;
begin
F:=TDialogExecuteCommand.Create(Caller);
什么时候在create函数中调用调用的句柄?有时还用Create(nil)什么的?
procedure TFormMain.btnManagerClick(Sender: TObject);
var
F:TFormManager;
begin
F:=TFormManager.Create(Self);
Self应该是指TFormManager而不是TFormMain?
什么都不懂,读不知道怎么提问了:)