hey all,
I have this code in VB.NET :
Having:
1 TextBox
1 Button
with this code:
Code:Public Class Form1 Dim m As String() Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click m = TextBox1.Text.Split(Environment.NewLine) For Each k As String In m 'MessageBox.Show(k) WebBrowser1.Navigate(k) Next End Sub
it navigates only to the last website (Google)Code:input www.a.com www.b.com www.c.com www.google.com
i think that's because the for loop is faster that navigation process
is there any suggestion ?
maybe using threads or sleep helps! but i need someone to help me combining all together.
thanks a lot.

Reply With Quote