Вниз
Скачать: CL | DM;

Не могу понять, что за фигня...   Найти похожие ветки 

 
VID ©   (2003-09-02 09:21) [0]


type TSpecTimer = class(TTimer)
Public
FProc: TNotifyEvent;
FParams:String;
end;

Procedure TDM.IntellTableRefresh( Sender:TObject);
begin
try
OpenCloseDataSet(TableNameToDataSet((Sender as TSpecTimer).FParams), opcRefresh)
except end;
end;

Procedure TDM.CreateTableRefreshTimer(Params:String);
Var I:Integer;
begin
For I:=0 To DM.ComponentCount - 1 do
IF DM.Components[I] is TSpecTimer then
With DM.Components[I] as TSpecTimer do
IF (FParams = Params) and ( FProc{Здесь возникает ошибка "[Error] master_dm.pas(635): Not enough actual parameters"} = IntellTableRefresh) then exit;
CreateSpecTimer(3, IntellTableRefresh, Params);
end;


 
MBo ©   (2003-09-02 09:28) [1]

@FProc


 
VID ©   (2003-09-02 09:39) [2]

IF (FParams = Params) and (@FProc = @IntellTableRefresh){Здесь: [Error] master_dm.pas(636): Variable required} then exit;


 
VID ©   (2003-09-02 09:42) [3]

а если писать:
IF (FParams = Params) and (@FProc = IntellTableRefresh){то здесь: [Error] master_dm.pas(636): Not enough actual parameters} then exit;


 
Nikolay M. ©   (2003-09-02 10:06) [4]

А если

var
tmp : TNotifyEvent;
begin
...
tmp := IntellTableRefresh;
if (@ tmp = @FProc) then
...
end;


Ногами не бить :)


 
Романов Р.В. ©   (2003-09-02 10:10) [5]

насколько я помню @@FProc
В любом случае почитай в справке описание оператора @


 
VID ©   (2003-09-02 12:18) [6]

to Nikolay M.: Именно так я и сделал, по совету одного знакомого :)

Спасибо всем :)



Страницы: 1 вся ветка

Скачать: CL | DM;



Память: 0.46 MB
Время: 0.017 c
3-48439
alex-ran
2003-08-26 12:07
2003.09.15
Параметрический запрос


14-48704
Ahmad K
2003-08-28 04:57
2003.09.15
Две операционки.


3-48431
den74
2003-08-25 14:31
2003.09.15
Как добавить поле в базу данных


14-48742
DProg
2003-08-26 16:55
2003.09.15
Компоненты для построения диаграмм типа UML диаграмм классов


6-48678
ART_43
2003-07-11 15:26
2003.09.15
TWebBrowser as OLEObject




   Наверх