использую код
- Код: Выделить всё
procedure TForm1.Edit1KeyUp(Sender: TObject; var Key: Word; Shift: TShiftState);
begin
{Unit1.pas(44,13) Error: Incompatible types: got "Char" expected "LongWord"}
if Key <> #13 then
begin
DBGrid1.Visible := true;
end;
end;
procedure TForm1.Edit1KeyPress(Sender: TObject; var Key: char);
begin
if Key = #13 then
begin
DBGrid1.Visible := false;
end;
end;
но получается, что сначала KeyPress скрывает, а потом KeyUp показывает DBGrid
пытаюсь не реагировать на Enter в KeyUp
- Код: Выделить всё
if Key <> #13 then
но вываливается ошибка {Unit1.pas(44,13) Error: Incompatible types: got "Char" expected "LongWord"}
подскажите как решить данную ситуацию