rightclick

How to disable right click menu in external launched applicaton

Good day. I have a program thats launches an external application. That external app has a right click sub menu on it which I need to disable. Is it possible (without modifying the external app) to disable the right click? Maybe permission or group policies and etc. Thanks. ...

Right click on sheet-tabs disabled in Excel

I used this vba code in the ThisWorkbook module to disable the right click menu in an Excel workbook. Private Sub Workbook_Activate() With Application.CommandBars.FindControl(ID:=847) .Visible = False End With End Sub Private Sub Workbook_Deactivate() With Application.CommandBars.FindControl(ID:=847) .Visible = Tru...

Help getting me started on making a file -> right-click context menu in Vista

I am a novice .Net 2.0 and 3.5 developer. I want to create an application that creates a context menu when a file is right clicked on in Vista. After the right click--I think I can figure out the rest, but I don't know the technique to get access to the Vista API. FOLLOW-UP: As I have been reading some of the info that folks have r...

How to disable right-click save on one specific image only

Hello, I'm running an Asian e-commerce site where users post images of their products. Is there a way to disable right click for only 1 specific image on the page? E.g. When viewing a product, there is a large image, and then some thumbnails of the product. When trying to right click on the large image, I want to disable right click...

How to detect a rightclick in an application.

Hi, my objective is to attach a context menu (vista and win7) whenever user right clicks a picture/file. I've got the file portion down (ie, they right click on a file and my menu shows up) but I am having trouble understanding what I would need to do in terms of right clicking in firefox or ie . I am trying to add a context menu whe...

why "event is undefined" when rightclick on google-map-v3

this is my code: google.maps.event.addListener(marker, 'rightclick', function(event) { //delete marker var nowIndex1='nowIndex1'; function callback1(element, index){ if(marker == element) nowIndex1=index } markers.forEach(callback1) if(nowIndex1!='nowIndex1') markers.removeAt(nowIndex1) //delete pat...

Java Swing JTable; Right Click Menu (How do I get it to "select" aka highlight the row)

Hi all. Short: I need a "right-click event" to highlight the cell row. I am using a JTable inside a ScrollPane in Java Swing (Netbeans Matisse). I have a MouseClicked event listener on the JTable that does the following: if (evt.getButton() == java.awt.event.MouseEvent.BUTTON3) { System.out.println("Right Click"); ...

Creating RightClick Menu for Explorer

If some one can provide some sample articles on how to create Right Click Menu for Drives. Here is what needed: The right click menu will contain two additional things, i.e: Connect and Disconnect. Can we make it conditional? I mean for some condition The drive will make the Connect enabled(Ideally when not connected) and when connected...