Как запретить в программе нажимать правую кнопку мыши, копировать текст, выделять текст. Есть только сама страница.
	
	
		
			
	
	
	
	
  
    
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
		
	
			
			
			
				Код:
			
		
		
		#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$iGUI_Width = 800
$iGUI_Height = 400
$Form1 = GUICreate("Form1", $iGUI_Width, $iGUI_Height)
$Obj1 = ObjCreate("Shell.Explorer.2")
GUICtrlCreateObj($Obj1, 0, 0, 800, 454)
GUISetState(@SW_SHOW)
$Obj1.Navigate("http://ya.ru")
While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
        Case $GUI_EVENT_CLOSE
            Exit
    EndSwitch
WEnd