Дежурный стрелочник
Группа: Участник
Сообщений: 31
|
Уважаемые!
На форму скинул всего 1 DBGridEh, создаю обработчик события:
CODE |
void __fastcall TMainForm::DBGridEh1DrawColumnCell(TObject *Sender,
const TRect &Rect, int DataCol, TColumnEh *Column,
TGridDrawState State)
|
Компилятор ругается:
Ambiguity between 'TGridDrawState' and 'Grids::TGridDrawState'
Изменяю на
CODE |
void __fastcall TMainForm::DBGridEh1DrawColumnCell(TObject *Sender,
const TRect &Rect, int DataCol, TColumnEh *Column,
Gridseh::TGridDrawState State)
|
Вновь ругается
DBGridEh1DrawColumnCell method referenced by DBGridEh1->DrawColumnCell has an incompatible parameter list. Remove the reference?
Сможет ли кто подсказать как мне поступить? |