LAN Web TCP Delphi

Title: activate Copy/Paste, Drag&Drop in a TWebbrowser?
{
This Code allows you to use Ctrl+C/Ctrl+V and
drag&drop in a TWebbrowser
}
uses
{...,}ActiveX;
// Put this Code at the end of your unit:
// Diesen Code am Ende der Unit anfügen:
initialization
OleInitialize(nil);
finalization
OleUninitialize;
end.