![]() |
|
nothing is working. - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Visual Basic & .NET Framework (https://sinister.ly/Forum-Visual-Basic-NET-Framework) +--- Thread: nothing is working. (/Thread-nothing-is-working) |
nothing is working. - BlueCat - 05-24-2014 Trying to create my own web browser, But these are not working in VS. Code: webbrowser1.GoBack()Code: webbrowser1.Forward()and so on...
RE: nothing is working. - HomeSen - 05-24-2014 Do you have an actual control (assuming that webbrowser1 is referencing an UI element)? Can you provide some more code/explanation, please? RE: nothing is working. - ArkPhaze - 05-25-2014 You don't have an instance of the WebBrowser declared as 'webbrowser1'. That is what that error means. |