I made sure it's visible and added it in the form.
Heres' the code:
Private Sub AddURLBtn_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AddURLBtn.Click Dim Height As New Point Dim width As New Point Height = 100 width = 100 WebSurfer = WebSurfer + 1 Me.components.Add(URLBrowser) URLBrowser.Name = "Browser" + WebSurfer.ToString URLBrowser.Height = 100 URLBrowser.Width = 100 URLBrowser.Visible = True URLBrowser.Navigate(URL_List.Text) MessageBox.Show(URLBrowser.Name + URLBrowser.Location.ToString + URLBrowser.Size.ToString) URL_List.Items.Add(URL_List.Text) Urls = Urls + 1 End Sub
Why isn't it showing up and how do I change the position of the newly created control. Thanks so much!

New Topic/Question
Reply



MultiQuote




|