- Регистрация
 - 06.07.2018
 
- Сообщения
 - 133
 
- Благодарностей
 - 3
 
- Баллы
 - 18
 
In Bot UI, I would like to open a browser window by clicking on a button (with a link) but the interface opens a new window with the zennoposter logo but not a browser window... How to do this?
What i use :
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
What i try to use :
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
								What i use :
			
				Код:
			
		
		
		<a target="_blank" rel="noopener noreferrer" href="https://google.com/">Link</a>
	
			
				Код:
			
		
		
		NavigateWebURL("http://www.google.com", "default")
	
			
				Код:
			
		
		
		Dim url As String = “http://www.example.com“
Process.Start(url)
	
			
				Код:
			
		
		
		private void pictureBox1_Click(object sender, EventArgs e)
    {
        Process.Start("http://www.google.com");
    }
	