me
Thanks to anyone who knows. Got you thinking a nice little challenge
for someone?
procedure XX.TheDBGridMouseDown(...)
begin
if button=mbLeft then TDBGrid(Sender).BeginDrag(false,20);
end;
procedure XX.TrashCanDragover(...)
begin
accept := true;
end;
procedure XX.TrashCanDragDrop(...);
begin
if Source.InheritsFrom(TDBGrid) then
TDBGrid(Source).Datasource.Dataset.Delete;
end;
Also, add some error checking.
--
----------------------
Regards
Robert Cerny
Remove both qwe when replying
email: robert.q...@neosys.xrs.qwe.si
No questions via email, unless explicitly invited.
DHastas wrote in message <38C1D656...@investrak.com>...