Jump to content
Fórum Script Brasil
  • 0

Check Box no DBgrid


robinhocne

Question

Tenho uma tabela temporaria(TblPes) onde trago algumas informações e um campo chamado "Seleciona" onde informo S e N, então tenho o código abaixo para no evento OnCellClick do DbGrid, onde verifico se o Field selecionado e passo o valor de S para N ou de N para S.

procedure TFrmPesCidade.DbgPesCellClick(Column: TColumn);
begin

  if DbgPes.SelectedField = TblPesSeleciona then
    begin

      if TblPesSeleciona.AsString = 'S' then
        begin
          TblPes.Edit;
          TblPesSeleciona.AsString := 'N'
        end
        else
        begin
          TblPes.Edit;
          TblPesSeleciona.AsString := 'S';
        end;

    end;
end;
e para preencher o campo no DbGrid com o checkbox eu utilizo um ImageLIst conforme abaixo:
if Column.Field = TblPesSeleciona then
    begin
        DbgPes.Canvas.FillRect(Rect);

        if (TblPesSeleciona.AsString = 'S') then
          begin
            ImageList1.Draw(DbgPes.Canvas,Rect.left +1,rect.top+1,1)
          end
          else
        if (TblPesSeleciona.AsString = 'N') then
          begin
            ImageList1.Draw(DbgPes.Canvas,Rect.left +1,rect.top+1,0);
          end;

    end;

Então quando eu clico ele muda para N onde mostra a caixa limpa e depois clico novamente para mudar para S e ai mostra a caixa marcada com outra imagem, o meu problema é que tem hora que não aparece a caixa e aparece a letra, onde também deixa até apagar, como faço para resolver isso ?

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...