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

Invalid typecast   Найти похожие ветки 

 
DUDAS ©   (2005-12-09 12:08) [0]

Помогите, пожалуйста...
При компиляции процедуры:

procedure TAutoCustomImageListBox.CNDrawItem(var Message: TWMDrawItem);
var
 State: TOwnerDrawState;
begin
 with Message.DrawItemStruct^ do
 begin
   State := TOwnerDrawState(WordRec(LongRec (itemState).Lo).Lo);
   Canvas.Handle := hDC;
   Canvas.Font := Font;
   Canvas.Brush := Brush;
   if (Integer(itemID) >= 0) and (odSelected in State) then
   begin
     Canvas.Brush.Color := clHighlight;
     Canvas.Font.Color := clHighlightText
   end;
   if Integer(itemID) >= 0 then
     DrawItem(itemID, rcItem, State) else
     Canvas.FillRect(rcItem);
   if odFocused in State then begin
     if(FImageList <> Nil) then
       InflateRect(rcItem, -2, -3);
     DrawFocusRect(hDC, rcItem);
   end;
   Canvas.Handle := 0;
 end;
end;

В строчке:  State := TOwnerDrawState(WordRec(LongRec (itemState).Lo).Lo);

Ошибка "Invalid typecast ".

В чем может быть проблема?


 
Игорь Шевченко ©   (2005-12-09 12:13) [1]

State := TOwnerDrawState(LongRec(itemState).Lo);


 
DUDAS ©   (2005-12-09 12:26) [2]

Спасибо!!!


 
han_malign ©   (2005-12-09 13:32) [3]


> State := TOwnerDrawState(LongRec(itemState).Lo);

State := TOwnerDrawState(itemState);
???



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

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



Память: 0.45 MB
Время: 0.024 c
2-1135506553
Дмитрий_177
2005-12-25 13:29
2006.01.15
Удаление из списка строк


2-1134550192
uzver.exe
2005-12-14 11:49
2006.01.15
Помогите решить плиз...


2-1134826691
XCoder
2005-12-17 16:38
2006.01.15
Реализация скриптового движка


14-1134839841
Piter
2005-12-17 20:17
2006.01.15
Хазанов


3-1132587938
gsa
2005-11-21 18:45
2006.01.15
Delphi5 + ODAC




   Наверх