For a shell extension (UI is similar to "New/" context menu), I need to create a file, select it and enter "rename" mode, so the user can adjust the default name.

Q: How do I enter "rename" mode for a file?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

The correct way to do this is to use IShellView::SelectItem with the SVSI_EDIT flag.

link|improve this answer
Thank you! Didn't expect any answer anymore, and yes, that's how it should be done :) – peterchen Jun 24 '11 at 13:00
feedback

Have you tried sending "F2" to the window?

link|improve this answer
Sending keystrokes isn't really the solution I'm looking for - besides, this would require selecting the file first. Further problems: refresh and wait for the new file to be actually listed, and selecting the file – peterchen Jun 8 '11 at 5:55
feedback

Your Answer

 
or
required, but never shown

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