[2005] Creating A Systray Popup Menu?
Jan 6, 2009I am trying to create a popup menu when a user right clicks an icon in my systray. I need to have 3 items in this menu. How do I do that?
View 16 RepliesI am trying to create a popup menu when a user right clicks an icon in my systray. I need to have 3 items in this menu. How do I do that?
View 16 RepliesIs there a way of creating a popup menu in vb.net?I want to be able to click a button and it pop up the menu next to the button.But, I want the size of the text in the menu a bit bigger.anyone know how to do it?(I have been trying for a while now and can't work it out)
View 4 RepliesI have an applcation that sets itself to 0 opacity on Form1_load which then changes to 1 when the user left clicks on the NotifyIcon.I would also like the form to center itself directy above the notifyicon like the Win7 speakers, power, ect popups.
View 1 Repliesin vb6 I wrote a program that had a context menu attached to the systray icon, and using an array I was able to create a group of menu items that if you clicked on one of them it became checked but unchecked the rest of the items, I can't seem to find a way of doing this in vb2008,
View 3 RepliesHow can I create a popup menu in vb 2008 for use as a context sensitive menu for when I right-click?
View 2 RepliesI am wanting to popup a menu when a user presses the right mouse button on my listview. Here is my code:
If e.Button = MouseButtons.Right Then
Me.cnmnuLstCopy.Show(Me.cnmnuLstCopy, e.Location)
End If
I am getting this error:
An unhandled exception of type 'System.StackOverflowException' occurred in System.Windows.Forms.dll
how to add a right click menu onto a panel?
View 4 RepliesHow can i call ckeditor as a pop up menu. I want to retrieve a file on the ckeditor. For example .txt file. How can i do to call the .txt file. I implement it on vb.net.
View 1 RepliesI'm using winforms and vb.net.When I right click on a textbox I get the copy/paste/etc popup menu. This is ok. But How can I add something to this menu, and where/how would I intercept the event when one would click on the Item I add to it?
View 2 RepliesI have created a popup menu so that when the user right clicks it appears(in the mouseclick event). the problem is that the popup is only enabled when inside the richtextbox and this is set to readonly and i want the popup menu to enable when in either of the 4 input boxes(rtbinput1 ect)
[Code]...
Using winform w/vb.net.When I have form w/a textbox and one right-clicks on the textbox a context menu pops up w/copy/paste options. How do I disable this from poping up (I want to use the right-click for my one function)?
View 2 RepliesI have an AppBar application that I've added a few drop down menu items and context menus to, but each and every time I try to access the menus, they appear outside of the form. This is what's happening with the drop down menu button I've added to my status strip, and context menus show up on the right side as well.
View 2 RepliesHow do I stop a popup menu from being displayed if a cell has not been selected in a DGV?
View 5 RepliesIs there a way to add a Header to the popup menu? I don't find a property for this.
View 3 RepliesI have a textbox on my form and I am showing a contextmenustrip when the user right clicks on it. That all works but the only problem is the copy,paste,cut etc menu is appearing above it. How can I disable the copy,paste and cut menu from appearing?
View 1 RepliesI am wanting to display a popup menu when a use clicks the right mouse button on my ListView.I have created a ContextMenuStrip with the items I would like.
[code]...
The thing is, the menu is way up to the top left. How can I set it to be where the user presses the mouse.Also, how can I set it to pop up only when the user presses the right mouse button on the lstView.
I am looking for some design "best practice" or heuristic to address performance issues on a webpage.Basically, there are dropdown menus with up to 10,000 choices and each is in an tag. So I have many thousands of extra nodes in the DOM model. I think this is slowing down the javascripts that parse the document after it loads, but also it is slowing down the initial page load to get out all that data.I would like to lift those drop downs off the page entirely, so instead of combobox style controls, it will have a link to a modal popup which will contain the picklist. I think preloading and caching these popups on the client will prevent the slowness of loading the initial page, and get all those 10,000s of off the DOM so that the existing script performance will improve.
With my limited experience in web development, I am not sure if the best thing is to create some sort of page/control/service/etc for the initial approach.Once I am confident I am using the correct approach, I should be able to work out the details.
Attached is the image from an Office application, how can we emulate such?
View 6 RepliesI have a list of all the fonts on a users system under a Font menu item. I would like to be able to use the scroll wheel to be able to scroll through these items like you can with a combo box.
[Code]...
I am creating an application which requires user to enter some data using popup. There will be text boxes and drop down list which will be filled by the user. Once the user fills the required information and submits it using a button, the popup will dissapear. Can anyone direct me how to use Popup control to contain textbox, drop down list and buttons.
View 1 Repliesi left VB6 to .NET (Microsoft Visual C# / Basic.NET / MS Visual Basic 2005). i made ContextMenuStrip for NotifyIcon but in VB6 we able to set flag for popupmenu which you can edit the align of menu vbRight.
View 4 RepliesI have VB.net code (2005) that updates an Excel (2003) file but on close I get a pop up from Excel when my code is trying to close it. How can I close and save changes and not get the pop up? ("Save Changes Made").
I tried this:
vb
xlWorkBook.SaveAs(Filename:=excelFileName2, FileFormat:=Excel.XlFileFormat.xlExcel3)
But it renamed the "Sheet1" tab and I got more pop ups from Excel.
I am loading a specific excel file into a form using webBrowser control(I'm suing this control because this way I can open any excel file). The thing i want to do is get the contents of specific cells within this excel file and put them into a textbox. An easy way to do this seems to be plain copy/paste the contents into the textbox. I want this process to be automated, so that the user can click only one button and the selected cell's contents to go sraight to the textbox(the button would act like the copy command and then paste the contents in the textbox). Also, i would like to know if i can add this option to the right-click menu.
View 4 RepliesI already have a menutoolstrip and i want to add the menuItem dynamically.I am able to add the first menuItem however, i have no idea how to add submenu.
View 2 Repliescreating a docked menu form?
View 1 RepliesI am creating my menu with javascript. How possible it is that on page load it is created from the server side (VB ASP.NET) rather than the client side? And if this is possible how is this done? My main aim is that I can create menu items from a database.
View 2 RepliesI have to create an application that will dynamically add a menu strip with menu items to a form(ie NOT dragged and dropped onto the form) in Visual Basic. The menu strip should be created in the Form_Load event handler. I have to use a TextBox for user input. If the user enters information into the TextBox and clicks on the Add Button, the text should be added to a ComboBox control.A Menu should then be created that must be added to the menu strip dynamically.
[Code]...
I would like to create an animated menu similar to the new windows 7/Mac OS bottom menu in my new vb.net app. I have done some searching on google and cant really find anything useful. where to start with this or some example code at all?
View 1 Repliesim trying to make a popup blocker type message box that pops up when a popup tries to load a page, and it asks The page [URL]is trying to open,open in a new tab?
(label)
No (button) Yes (button)
how would i make a menu appear when i click somwhere on the page,how would i make it recognise a picture, and be able to copy it to a location on the local drive?
I'm trying to use the WebKit-component ([URL]) in VB with the help of Visual Studio 2008. This is running without problems, except for two following two issues:
1. Hints/Tooltips are not shown (e.g. as there usually will appear one if you stay with the mouse over the Google-logo)
2. If there's a popup-window, I don't know how to get the new desired URL.
[Code]...