Page 1 of 1
Tabbed WebBrowser - My Way
Posted: Sun Aug 12, 2012 1:59 am
by M1z23R
Here is quick project i made. It is simple, ugly GUI but nvm

to lazy
All questions about the project post here ;)
To create a new tab use Ctrl+T and Ctrl+W to close tab.

Re: Tabbed WebBrowser - My Way
Posted: Sun Aug 12, 2012 2:09 am
by Shim
is there any way to make forms text to websites title like on chrome or firefox ?
how to make the progressbar to to see the performance of the loading ?
how to make the websites title view on tab page text ?
Re: Tabbed WebBrowser - My Way
Posted: Sun Aug 12, 2012 2:13 am
by M1z23R
Forms text --- >
Code: Select all
Private Sub TabControl1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TabControl1.SelectedIndexChanged
If Not TabControl1.TabCount = 0 Then
Me.Text = TabControl1.SelectedTab.Text
End If
End Sub
TabPage text already done in project, check it ;)
Progress:
Re: Tabbed WebBrowser - My Way
Posted: Sun Aug 12, 2012 4:02 pm
by Vikhedgehog
LOL, its like chrome! :O
Re: Tabbed WebBrowser - My Way
Posted: Sun Aug 12, 2012 5:48 pm
by dj1437
Does this use mdi? Because that is how my browser works.
Re: Tabbed WebBrowser - My Way
Posted: Sun Aug 12, 2012 11:22 pm
by M1z23R
It has user control for 'navigator' (back/forward...).
No custom tab page.
It is ALMOST as chrome xD rofl
edit: i made this in 10mins, it is something like template project for those that want to start from somewhere...