Jump to content

Luiz Felipe Heemann

Members
  • Content Count

    4
  • Joined

  • Last visited

Community Reputation

0 Neutral

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. The problem is how to open Form2 without firing the OnCellClick() present in the DBGrid in Form2. The use of PostMessage() message haddling like suggest does the same problem above.
  2. Event form 1: procedure TForm1.Panel1DblClick(Sender: TObject); begin TForm2.Create(Self).ShowModal; end; Event form 2: procedure TForm2.DBGrid1CellClick(Column: TColumn); begin ShowMessage('Test'); end; What should I do to avoid fom2's onCellClick event?
×