Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

URL drops from IE

0 views
Skip to first unread message

Pezz

unread,
Sep 3, 1998, 3:00:00 AM9/3/98
to
Hi Guru's...

After many hours of searching DejaNews, various Delphi sites and testing
umpteen components and sources, I just don't seem to be able to accept
dropped URL's...

Most of the time I can get a form to accept a list of dropped Filenames
from Windows Explorer and such, but URL's from IE never work.

Does anyone have the definitive solution to this? Many articles I have
read claim to do so, but I haven't seen one work yet.

Thanks in advance,
Simon Perry (aka Pezz)
pezz@#NOSPAM#webaxs.net

Fred Jansma

unread,
Sep 4, 1998, 3:00:00 AM9/4/98
to
Pezz,

easy. Place a TRichEdit on your form (with name RichEdit1) and add the
following code:

procedure TForm1.RichEdit1DragOver(Sender, Source: TObject; X, Y: Integer;
State: TDragState; var Accept: Boolean);
begin
Accept := True;
end;

Sincerely,

Fred Jansma.

0 new messages