 |
|
|
 |
|
 |
I would like to remove “Open”, “Explorer”, “Search”, “Properties” from IShellView (Right Panel) Context Menu. How do I do that?
Is there any way to modify menu before showing right click context menu (Right Side Panel). Is that menu generating from IShallView or IShellFolder?
Please help me.
Regards, Imrose
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Is it possible to embed the whole explorer window in a dialog or a window?
Javed A Ansari Software Developer Hyderabad, India
|
| Sign In·View Thread·PermaLink | 1.50/5 (2 votes) |
|
|
|
 |
|
 |
Dear Sir, Please see the message below: fatal error RC1015: cannot open include file 'atlres.h'
Regards Monther
Monther
|
| Sign In·View Thread·PermaLink | 2.00/5 (1 vote) |
|
|
|
 |
|
|
 |
|
|
 |
|
 |
Hi,
Is there any solution to implement this project on a dailog-based application?
Thank you very much!
|
| Sign In·View Thread·PermaLink | 1.00/5 (3 votes) |
|
|
|
 |
|
 |
I downloaded the sample and built the project. While testing I browsed to a folder that contained the "My web sites on MSN" subfolder. Big mistake. Every few seconds a "Connect to www.msnusers.com" dialog pops up. I can dismiss it but it comes back. If I dismiss it and I can quickly click on the tree control to go to another directory. However the dialg continues to pop up for an extended period of time. I have also seen a dialog that asks me to get a Microsoft Passport when this is happening.
I do not see this behaviour with Explorer. What modifications are necessary to get this implemenation to do the same thing Explorer does. This only seems to happen when in thumbnail mode.
|
| Sign In·View Thread·PermaLink | 4.00/5 (2 votes) |
|
|
|
 |
|
 |
Hi Leon I want to get the path for each icon/folder inside the desktop folder from your application. How do i go about doing it?
I need to log the name of each folder inside the desktop folder and it's path. How do i get the path for each folder? Am stuck here.
A reply soonest will be appreciated.
Sincerely Giftsana
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
 |
I'm having a hard time setting the path manually. I can't grasp the basic concepts enough to implement BrowseObject(). I think I'd have to walk the tree or something, but I'm a noob. Has anybody implemented BrowseObject()? Or has anybody got some other way of manually setting the path?
Thanks
|
| Sign In·View Thread·PermaLink | 1.00/5 (1 vote) |
|
|
|
 |
|
 |
I found that it won't handle any accelator keys, such as "delete", "ctrl+c", "ctrl+v", "f2", who can help me ?
|
| Sign In·View Thread·PermaLink | 5.00/5 (2 votes) |
|
|
|
 |
|
 |
Hi Leon, and thanks for the example, very usefull! I am implementig IShellBrowser in a separate class/view, passing to the main form the handle of the ListView created by CreateViewWindow, but a part of this, the rest of the code follow pretty much your example. It seems to work, however I noticed that there is a problem concerning the messages sent to the status bar. If I implement this view in a multi-threaded sdi app, the status bar will not receive any message at all. I mean, if I set an initial message in the main app, then create the view and click on any icon, the status bar will go blank, erasing the message, but not display any file information at all.
What am I doing wrong, anyone?
Thanks to all, and keep up the excellent work!
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi, I tried to play with Spy++ on shellview to see WM_DDE* messages. It seems thay are not sent at all. Any suggestions?
Thanks
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
if you right click on any folder, then select "search" then your Spy++ will be able to detect the WM_DDE*. You can also use DDE Spy to spy on DDE* messages
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
 |
I am facing the same problem as you do. I am still looking for solution to this problem. From my understanding, the only time any WM_DDE_* is sent is when 2 programs need to exchange data. For example, when you double click on a folder in ishellview, a WM_DDE_INITIATE will be send to Windows Explorer(W.E). the W.E will open up the folder and display it.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Try running the sample code. Use spy++ on main frame window. You'll see WM_DDE* messages. Just follow the same format that MS uses in the webapp sample.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
 |
Hi Sir,
I am wondering what i will have to modify if i want to use the same ishellview to display the contents of the folder when i double click it on the ishellview(just like when you double click in the folder in windows explorer).
Thank You
|
| Sign In·View Thread·PermaLink | 2.00/5 (2 votes) |
|
|
|
 |
|
 |
Hi,
You can handle DDE messages as in this example: http://support.microsoft.com/support/kb/articles/q189/6/34.asp
http://www.codeguru.com/Cpp/COM-Tech/shell/comments.php/c4521/?thread=52742
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
 |
Alternatively, it looks like IShellBrowser::BrowseObject( ) is called when you double-click on a folder. However, it won't call it normally. Instead I needed to extend my IShellBrowser object to also have the IServiceProvider interface, and then return an IShellBrowser interface when requested.
When you double-click on a folder, it looks like the IShellView first calls IServiceProvier::QueryService( ) for an IShellBrowser interface, and if it finds it it invokes IShellBrowser::BrowseObject( ) with the PIDL of the new folder and does nothing (ie, waits for you to open the new folder). If you don't implement IServiceProvider (or don't return an IShellBrowser from QueryService), it looks like IShellView just launches a whole new Windows Explorer to display the new folder.
I haven't implemented same-window navigation yet, but I expect to just create a new IShellView using the PIDL supplied in BrowseObject, and then swap the child's new window with the parent folder's IShellView window. I could even keep around the old IShellView to speed up the "Back" function, or destroy and recreate it later. We'll see.
-david
|
| Sign In·View Thread·PermaLink | 3.00/5 (2 votes) |
|
|
|
 |
|
|
 |
|
|
 |