Tabbed WebBrowser - My Way

Heres your chance to share your own tutorials with the community. Just post them on here. If your lucky they may even be posted on the main site.
6 posts Page 1 of 1
Contributors
User avatar
M1z23R
VIP - Donator
VIP - Donator
Posts: 622
Joined: Tue Sep 28, 2010 4:55 pm

Tabbed WebBrowser - My Way
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.
Image
You do not have the required permissions to view the files attached to this post.
User avatar
Shim
VIP - Donator
VIP - Donator
Posts: 882
Joined: Wed Dec 14, 2011 5:02 am

Re: Tabbed WebBrowser - My Way
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 ?
Find my programs on Softpedia
User avatar
M1z23R
VIP - Donator
VIP - Donator
Posts: 622
Joined: Tue Sep 28, 2010 4:55 pm

Re: Tabbed WebBrowser - My Way
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:
You do not have the required permissions to view the files attached to this post.
Vikhedgehog
VIP - Donator
VIP - Donator
Posts: 812
Joined: Fri Nov 05, 2010 6:24 pm

Re: Tabbed WebBrowser - My Way
Vikhedgehog
LOL, its like chrome! :O
User avatar
dj1437
VIP - Donator
VIP - Donator
Posts: 504
Joined: Tue Dec 21, 2010 2:02 am

Re: Tabbed WebBrowser - My Way
dj1437
Does this use mdi? Because that is how my browser works.
This is a signature.
User avatar
M1z23R
VIP - Donator
VIP - Donator
Posts: 622
Joined: Tue Sep 28, 2010 4:55 pm

Re: Tabbed WebBrowser - My Way
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...
6 posts Page 1 of 1
Return to “Tutorials”