I want to let the user select an association (open with) for an currently unregistered file extension.

Currently I'm telling the API to open the file by using ShellExecute and it returns an ERROR_NO_ASSOCIATION error code.

Is there a way to tell the API that it should let the user select a new association?

link|improve this question

80% accept rate
this might do it: rundll32.exe shell32.dll,OpenAs_RunDLL "C:\Path\TEXT.TXT" – David Heffernan Feb 10 at 8:27
feedback

1 Answer

up vote 6 down vote accepted

I use

procedure ShellOpenAs(const AFileName: string; AHandle: HWND);
begin
  ShellExecute(AHandle, 'open', PChar('rundll32.exe'), PChar('shell32.dll,OpenAs_RunDLL ' + AFileName), nil, SW_SHOWNORMAL);
end;

There is also SHOpenWithDialog on Windows Vista and later. (I find it interesting that Microsoft wrote a RunDLL compatible entry point but until Vista didn't bother to provide a regular API function.)

link|improve this answer
Thanks, I'll add this as the fallback if the first fails, since I only want the dialog if I can't already open it. – Tobias R Feb 10 at 10:04
1  
The correct way to invoke the dialog is to use the openas verb instead: ShellExecute(AHandle, 'openas', PChar(AFileName), nil, nil, SW_SHOWNORMAL); – Remy Lebeau Feb 10 at 21:22
@Remy: This doesn't work for me (Windows 7 64-bit). I get system error 1155 - translated from German: "The specified file has no associated application". – Ulrich Gerhardt Feb 13 at 8:53
@UlrichGerhardt: openas works for me on my Win7 64-bit machine, both for ShellExecute() and ShellExecuteEx(). – Remy Lebeau Feb 14 at 0:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.