Windows システムで独自のカスタム モニカー (または URL プロトコル) を作成するにはどうすればよいですか?
例:
- http:
- メールアドレス:
- サービス:
URL モニカーの作成と使用、非同期プラガブル プロトコルについて、およびMSDNの URL プロトコルへのアプリケーションの登録を参照してください。
これは、Web アプリケーションでショートカットを取得して、ユーザーのためにローカルで Windows プログラムを起動する方法として使用した古い Delphi コードです。
procedure InstallIntoRegistry;
var
Reg: TRegistry;
begin
Reg := TRegistry.Create;
try
Reg.RootKey := HKEY_CLASSES_ROOT;
if Reg.OpenKey('moniker', True) then
begin
Reg.WriteString('', 'URL:Name of moniker');
Reg.WriteString('URL Protocol', '');
Reg.WriteString('Source Filter', '{E436EBB6-524F-11CE-9F53-0020AF0BA770}');
Reg.WriteInteger('EditFlags', 2);
if Reg.OpenKey('shell\open\command', True) then
begin
Reg.WriteString('', '"' + ParamStr(0) + '" "%1"');
end;
end else begin
MessageBox(0, 'You do not have the necessary access rights to complete this installation!' + Chr(13) +
'Please make sure you are logged in with a user account with administrative rights!', 'Access denied', 0);
Exit;
end;
finally
FreeAndNil(Reg);
end;
MessageBox(0, 'Application WebStart has been installed successfully!', 'Installed', 0);
end;
Craig Brockschmidtの内部OLEは、おそらくモニカで最高のカバレッジを持っています。このトピックをもう少し深く掘り下げたい場合は、この本を入手することをお勧めします。まだお持ちの場合は、VS6.0に付属のMSDNディスクにも含まれています。