amtopel
amtopel
I believe it's IFolderView::GetFocusedItem, documented here: https://docs.microsoft.com/en-us/windows/desktop/api/shobjidl_core/nf-shobjidl_core-ifolderview-getfocuseditem
Cool. I noticed there is a slight delay in filtering. Is there an intentional pause to wait for keyboard input to stop, or is the delay a result of the...
Great, thank you very much for your responses and for sharing the code. On Fri, Jun 21, 2019 at 2:49 PM Stefan Küng wrote: > The pause is intentional so...
Oh, one other question: do you happen to know what IShellFolderViewDual3::FilterView is? The documentation isn't very informative. https://docs.microsoft.com/en-us/windows/desktop/api/shldisp/nf-shldisp-ishellfolderviewdual3-filterview. I was wondering if it accomplishes something similar. On Fri, Jun 21,...
Okay, thanks again. On Fri, Jun 21, 2019 at 3:37 PM Stefan Küng wrote: > I can only guess: but in earlier windows versions you could configure > explorer to...
Sorry, one more question: what command actually triggers the folder to change the files listed in the view? Is it SendMessage? Or something else? I can't quite figure it out...
Thanks! Is there any trick to getting the IShellFolderView interface? I’ve defined the IID, like in your code, and I try querying the interface (from either an IShellView or IFolderView),...
Okay, thanks. But then what's the purpose or effect of calling `IOleCommandTarget::Exec` with `DBID_BANDINFOCHANGED`?