Hello,
I am trying to force default behavior of right-mouse-click when the click is not in a browse.
It is possible?
Bellow Code.
	
	
	
		
				
			I am trying to force default behavior of right-mouse-click when the click is not in a browse.
It is possible?
Bellow Code.
		Code:
	
	ON 'right-mouse-down':U anywhere DO:
    
    /* só dispara a 1º vez */
    if focus:type = "BROWSE" then do: /* só "reage" se tiver ENABLED */
        
        ghDataBrowse = focus:handle.
        run POP-UP-MENU.
        
    end.
    else do:
    
        /* THIS code DON´T work */
        apply "mouse-menu-down":U to self.
        return no-apply.
        
    end.
end. 
	 
 
		
