This gives me an error.
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
CType(TabControl1.SelectedTab.Controls.Item(0), WebBrowser).Navigate(My.Settings.homepage.ToString)
End sub
It says that "System.NullReferenceException was unhandled
Message="Object reference not set to an instance of an object.""
I have a value in for the setting, it is http://acedrive.tk/
<?xml version="1.0" encoding="utf-16"?>
<ArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<string><http://acedrive.tk></string>
</ArrayOfString>
What's the issue?