How to open a new web page in the same window in Visual Basic? Help with full code, zero in this case
1 answer
This is just using Process.Start :
Dim url As String = "http://hashcode.ru/" Process.Start(url)
|
How to open a new web page in the same window in Visual Basic? Help with full code, zero in this case
This is just using Process.Start :
Dim url As String = "http://hashcode.ru/" Process.Start(url)
Source: https://ru.stackoverflow.com/questions/152003/
All Articles