Question : Need help with webbrowser

Im building web browser using tab controls to open new window by clicking on the tab. I have this button code:

Dim BtnNew As New Button()
BtnNew.Location = New System.Drawing.Point(656, 3)
BtnNew.Margin = New System.Windows.Forms.Padding(5, 3, 5, 3)
BtnNew.Name = “Button1¿ & (BtnNew.Controls.Count + 1)
BtnNew.Size = New System.Drawing.Size(125, 27)
BtnNew.TabIndex = 2
BtnNew.Text = “Button1¿
BtnNew.UseVisualStyleBackColor = True

when click on this button i need  to open the url from the textbot i have there.

Answer : Need help with webbrowser


you need the following:

access-list acl_out extended permit tcp any host 200.200.200.200 eq 1000
access-list acl_out extended permit tcp any host 200.200.200.200 eq 2000
access-group acl_out in interface outside
static (inside,outside) tcp 200.200.200.200 1000 192.168.0.101 80 netmask 255.255.255.255
static (inside,outside) tcp 200.200.200.200 2000 192.168.0.202 80 netmask 255.255.255.255
Random Solutions  
 
programming4us programming4us