Can Delphi be used to create and handle a custom protocol handler?

为君一笑 提交于 2019-11-29 23:18:02

MSDN has an article explaining the whole thing. It describes the registry entries you need to set up, and it describes the command line that Internet Explorer will use to invoke your program.

There's nothing to prevent you from writing a protocol handler in any Delphi version you want.

A custom protocol handler is a registered COM object that implements the IInternetProtocol interface.

Here http://www.doogal.co.uk/plugprot.php is some information on how to implement it in Delphi.

Yes, as a matter of fact that is exactly how the IDE Welcome page works. We register a custom protocol handler for bds://.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!