Share Context Menu For Multiple Controls?
Dec 2, 2010
This is a conceptual question, so I'm not inluding code yet. I can't understand how to share a context menu strip between controls - how do I know which control the user was in when he right clicked it and made a selection?
Example: I have 3 text boxes that all use the same contextmenustrip and require the exact same functionality so no need to load new options. The user selects one of the options and an event fires something like this:
Private Sub mnuX_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mnuX.Click
how to determine which text box is responsible for it??
View 1 Replies
ADVERTISEMENT
Jul 12, 2009
I have a VB2008 music-player program with a listview that acts as a playlist. I created Windows Shell Context Menu entries in the registry for MP3 etc files, so if I right-click such a file in Windows Explorer it gives the option: Play in MyProg. If multiple files are selected in Windows Explorer and sent to be played in MyProg, the first one must be sent to the music player (part of same prog) and the others must be added to the playlist (listview). For this reason I must know whether a commandline call is just a single one or whether other context menu calls will follow.
[Code]...
View 2 Replies
Nov 6, 2011
Sharing similar functions across multiple controls
View 2 Replies
Mar 5, 2010
So I've got this context menu working out except that the event behind the actual selection of the menu item seems to fire multiple times. First time I click it, it fires once, then twice, then 3 times. So, in the example I just gave, for 3 clicks it would have fired a total of 6 times (1 + 2 + 3). Why is that?
Below is my code on how I'm creating the menu items. I stripped it down to the relevant pieces; I omitted things like .Tag, .Visible, and .Caption properties. I'm building this using .NET 3.5 and VS 2008.
[Code]...
View 1 Replies
May 15, 2010
VB express 2008 .net 3.5 or .net 4.0 VB express 2010?I have written application to convert RTF to HTML. The main Purpose of the application is to copy VS code to the clipboard and covert it then put it back into the clipboard as a HTML Document so that it can be pasted into a HTML document such as Windows Live Mail. I found that code copied and pasted is spaced out in in the wrong positions.
The applications works perfect with no bugs so far. I then asked Myself how to go about doing the copy with the least amount of operator interaction. So I added an Icon to the Icon Tray with a right click menu to use to convert once the Rich Text Format was copied to the clipboard. This works fine except you have Five steps, Select the text, Copy to clipboard, Right Click the icon, Select the Converter and Paste. The normal is three steps.
To this the best solution is to add a context menu item to the active form such as the RTF editor or window. So that when you select the Rich Text to copy and right click on the form to bring up that menu then to Just Select the menu Item such as "Copy RT and Convert" I searched and found about 544000 Items and tried to restrict down to no avail. I read until I finally gave up. I did not find any code examples of this. Almost every thing I found related to the web or some other explicit document like Excel and not to the Various windows that could be active with RT in it.
how do you add a context menu item to the context menu of an active rich text format window such as WordPad or VB?I have test in my application that tests to see if it is a RTF in the clipboard so if it is not the converter does nothing.
Imports System.Threading
Imports System.IO
Imports System
[code]....
View 8 Replies
Jun 6, 2011
I'm trying to get my context menu appear in my tasktray, while the tray appears the menu doesnt when i right click. Here is all my code associated with my task tray:
[Code]...
View 4 Replies
Nov 26, 2009
Suppose I have ToolStripMenuItem mnuOrderOptions that contains the three drop down items. I want to copy all the items are their respective event handlers to Contextmenu on button click & then bound that context menu with the form.
Private Sub AToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AToolStripMenuItem.Click
MsgBox("A")
End Sub[code]....
how to clone the menu items and then bound it to form context menu.
View 3 Replies
Jul 13, 2010
I open a context menu by right clicking it.
It stays open when the cursor leaves it.
I click a main menu item.
The drop down opens at the top left of the screen.
Not under the main menu item I clicked.
I want to search the Internet but can't guess what key words to use.
View 2 Replies
Jan 18, 2010
I have a blank form and when the use right clicks on the form, they get a context menu with any number of names in the menu. This changes depending on the situation. I can get the context menu to add/remove the list of names but when I click on one of the choices and it goes to my routine (from addhandler) I can't find the property that tells me what they clicked on...
[Code]...
View 1 Replies
Jun 22, 2009
i want to show context menu on drop down menu item right click...As an example,Suppose we add bookmark in mozilla & when we right click on that item..context menu is showing
Code:
Private Sub MenuAddToFavorites_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles MenuAddToFavorites.MouseDown
If e.Button = Windows.Forms.MouseButtons.Right Then
[Code]......
View 5 Replies
Jun 12, 2009
I know that right click menu is locked in the accdr mode. Is there any vba code to force this menu appear on right click?What i want in the menu is "cut, copy, paste". Now i only have paste functionality without any menu appearing
Private Sub Text22_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
f Button = 2 Then
CommandBars("Edit").Controls("Paste").Execute <---i want to replace this code with one
[code].....
View 6 Replies
Mar 22, 2009
I want to show a context menu on right click on a menu, but the menu disappears every time it is right clicked and I dont get the right coordinates for my menu.
Here is my code:
Code:Private Sub colMenus_MenuContextMenu(ByRef Sender As Object, ByRef e As clscolMenus.MenuContextEventArgs) Handles colMenus.MenuContextMenu Dim p As Drawing.Point Dim tm As ToolStripMenuItem
[Code].....
View 3 Replies
Nov 2, 2011
I have added a context menu at design time at VB.Net 2010. But I need to add a sub menu at run time to that context menu.
View 2 Replies
Jun 17, 2010
I'm writing a small software similar to the calculator in Windows, the calculator in Windows has a menu bar; in the menu bar, you can find "scientific" and "standard" mode; once you select different mode, your form will be changed, but the two forms still share the same menu bar.
I want to create the same effect of this:
1. Two forms, only one is visible at any time
2. The menu bar on the top of the two forms should be shared between these forms
I just started learning VB for 2 weeks, I'm not sure my thinking can be achieved by VB, if not
View 4 Replies
Mar 1, 2009
Attached is the image from an Office application, how can we emulate such?
View 6 Replies
Jun 3, 2009
Is there another way to add a Context Menu to a ToolStrip other than using the MouseDown Event? I want to use it to let people select to either show text labels on buttons in the ToolStrip or turn them off.
View 6 Replies
Oct 27, 2010
How to put my video player to the context menu? But I also need to know how to make it so that when my video player opens that it will it will load the file that I wanted to open with my video player.
View 13 Replies
May 1, 2010
Is there any way I can assign a Context Menu with a button on my form?There is nothing in the properties window that allows me to do this.
View 1 Replies
Jun 14, 2010
I Wont Save Selected Traget & Save Selected Image& Save Selected Link& Copy Image& View Iamge
View 10 Replies
Feb 2, 2009
I have an application that is simply an icon that sits in the system tray, with a context menu that opens upon right-clicking. One of the options in the menu is a text box where the user can enter a number, and press enter to perform a specific action (which is not significant to my question). The problem with this, however, is that if the mouse moves away from the text box, the menu closes.
Is there a way to keep the menu open as long as the text box has focus no matter what?
View 12 Replies
Dec 21, 2010
I have an application. If I press a button, a menu show up.
How do I get a handle to that menu?
I use spy ++. It seems that the menu is not a child of the button.
I use FindWindowEx but I don't think I got the right handle.
Here is another possibly related question
Why the handle of a menu is of type HMENU rather than HWND?
In VB.net they're both integer right?
View 4 Replies
Jan 23, 2010
how use context menu on browser and close menu windows
View 14 Replies
Oct 17, 2009
I've attached a context menu to a richtextbox. This textbox contains lines of data, and I want to find the text of the line which the user has pressed.I found how to do it after the user has chosen one of the context menu items. But I can't figure out how to do it before or when the context menu is opened. The reason for that is that I'd like to disable one of the context menu items if the line of text is missing some text. I tried the following but it's not working:
Private Sub ContextMenuStrip1_Opening(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs)
RichTextBox1.GetLineFromCharIndex(RichTextBox1.SelectionStart)
Dim line As Integer = RichTextBox1.GetLineFromCharIndex(RichTextBox1.SelectionStart)
[code]....
View 8 Replies
Feb 26, 2010
I have an INI file that contains several of these following entries.The Section names are all labled ASSET_CONTROLS_#.[code]The "Name" field should be added to the ContextMenuStrip control as a ToolStripMenuItem.If there is a value in "SubMenuNames" in the INI file, the ToolStripMenuItem created from the "Name" field, should have a DropDownItem created under it. I have separated multiple SubMenuNames with a SemiColon, so a loop would be used to create the separate menu items.Command and Parameters are to be used with the Process.Start function when the Menu Item is clicked. What is the best way to code this? I have been trying to do the event handling for the menu items for hours now and can't get it right. I basically want to call a procedure and pass the "Command & Parameter" values to it to use the Process.Start function.[code]
View 11 Replies
Dec 26, 2010
This is not strictly .net code question but I have a project that i want to open from a folder(not file) context menu and pass the folder path to my program like open with but this is not visiable from a folder.
View 2 Replies
Feb 26, 2012
I want to add a context menu to a form's caption. When I right click on it to show a menu.
View 6 Replies
Oct 2, 2010
I need some code to add the contextmeu to the richbox Not the tabcontrol But the richtextbox is in the control, So I have the CType(TabControl1.SelectedTab.Controls.Item(0),RichTextBox) But now what to add the context menu?
View 6 Replies
Mar 27, 2009
How can add item to Windows Explorer context menu ?
View 1 Replies
Jul 25, 2010
I am writing an app and I was wondering how could you add something to the windows context-menu (when you right click on the windows exspor) like in 7Zip or winRAR to preform certain actions i.e. encrypt filezip file; in vb.net, or perhaps is there a way in the windows installer template?
View 1 Replies
Jul 9, 2011
i want to add my program to the windows context menu so that whenever user right clicks on any file of folder my program should display on the context menu so that the user can use my program to do some operation on the selected file or folder.
I know how to add a new program to the windows context menu manually. by editing the windows registry we can do that. but i want to do when user istall my application it has to add to the context menu automatically.
View 2 Replies