How to open the folder explorer right click menu in Visual Basic?
Hello,
When I right click on the file in the Visual Basic listview, I want open the Windows Explorer to menu (The menu when we right click on a file in Explorer opens)
How do I open the menu Explorer with API commands in Visual Basic?
Thanks
Re: How to open the folder explorer right click menu in Visual Basic?
Displaying a menu won't do you much good. You'll have to code what happens when a user clicks on one of the menu items too.
The menu you see in Explorer is not so simple. There is a 'service' that Explorer offers applications so that they can add their own menu items there and also some of the menu items are found in subfolders. For example the "Send To" menu item is in the user's personal settings folder: C:\Documents and Settings\[username]\SendTo
Since your listview is not known to Explorer not can it be made known to Explorer, I cannot see anyway of having Explorer display its context menu on your listview.
Re: How to open the folder explorer right click menu in Visual Basic?
Thanks
Then:
The menu is not displayed in Visual Basic Explorer,Is this true?
Re: How to open the folder explorer right click menu in Visual Basic?
u can create ur own menu in VB using menu editor.
Re: How to open the folder explorer right click menu in Visual Basic?
The simple way is....Insert a Web-browser control from components:
Code:
Private Sub Form_Load()
WebBrowser1.Navigate "C:\"
End Sub
Windows explorer at your service....
Re: How to open the folder explorer right click menu in Visual Basic?
Re: How to open the folder explorer right click menu in Visual Basic?
Quote:
Originally Posted by
Stupidiot
The simple way is....Insert a Web-browser control from components:
Code:
Private Sub Form_Load()
WebBrowser1.Navigate "C:\"
End Sub
Windows explorer at your service....
http://s3.subirimagenes.com:81/image...6692926ie6.png