Uploaded by hawkei67 on Jan 21, 2012
This is a project I have been working on in Visual Studio (Visual Basic) 2008. It is a full featured social network web browser with a good many features which I feel others would like to have in a browser. It is still a work in progress. I still need to code the New Tab button, the status label and the progress bar. Also I still need to code the captions for the title bar on the browser and the captions on the tabs to reflect the sites I am currently on. The combobox on the 2nd row of tool buttons will hold your favorites when you add a favorite (have not coded the favorite button yet) and also if you click on the tv, radio or game buttons then that same combobox will load up the tv channels, radio channels and games from a specified site. The red icon on the top toolbar on the far right side will be a website scanner so you can scan the current site for malicious objects. I am still gonna embed a standalone email application in it so you do not have to have a seperate email app for viewing or sending emails, everything will be in one application. Please leave any suggestions you feel I should add or change.
Here is the coding I have done so far: Note, any help would be greatly appreciated on the new tab option and anything else you think I should work on.
Public Class Form1 Dim int As Integer = 0 Private Sub Loading(ByVal sender As Object, ByVal e As Windows.Forms.WebBrowserProgressChangedEventArgs) ToolStripProgressBar1.Maximum = e.MaximumProgress ToolStripProgressBar1.Value = e.CurrentProgress End Sub Private Sub Done(ByVal sender As Object, ByVal e As Windows.Forms.WebBrowserDocumentCompletedEventArgs) TabControl1.SelectedTab.Text = CType(TabControl1Private Sub ToolStripButton10_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButt.SelectedTab.Controls.Item(0), WebBrowser).DocumentTitle ToolStripComboBox1.Text = CType(TabControl1.SelectedTab.Controls.Item(0), WebBrowser).Url.ToString End Sub Private Sub ToolStrip2_ItemClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.ToolStripItemClickedEventArgs) Handles ToolStrip2.ItemClicked End Sub Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim Browser As New WebBrowser TabControl1.TabPages.Add("New Page") Browser.Name = "Web Browser" Browser.Dock = DockStyle.Fill TabControl1.SelectedTab.Controls.Add(Browser) AddHandler Browser.ProgressChanged, AddressOf Loading AddHandler Browser.DocumentCompleted, AddressOf Done int = int + 1 CType(TabControl1.SelectedTab.Controls.Item(0), WebBrowser).Navigate("www.startpage.com") End Sub Private Sub ToolStripButton6_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles ToolStripButton6.Click WebBrowser1.Navigate(ToolStripComboBox1.Text) End Sub Private Sub ToolStripButton23_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton23.Click Dim Browser As New WebBrowser TabControl1.TabPages.Add("New Page") TabControl1.SelectTab(int) Browser.Name = "Web Browser" Browser.Dock = DockStyle.Fill TabControl1.SelectedTab.Controls.Add(Browser) AddHandler Browser.ProgressChanged, AddressOf Loading AddHandler Browser.DocumentCompleted, AddressOf Done int = int + 1 CType(TabControl1.SelectedTab.Controls.Item(0), WebBrowser).Navigate("www.google.com") End Sub Private Sub ToolStripButton24_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles ToolStripButton24.Click If Not TabControl1.TabPages.Count = 1 Then TabControl1.TabPages.RemoveAt(TabControl1.SelectedIndex) TabControl1.SelectTab(TabControl1.TabPages.Count - 1) int = int - 1 End If End Sub Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick ToolStripStatusLabel1.Text = CType(TabControl1.SelectedTab.Controls.Item(0), WebBrowser).StatusText End Sub Private Sub ToolStripButton8_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton8.Click WebBrowser1.Navigate("http://www.google.com/#hl=en&sugexp=pfwl&cp=9&gs_id=10&xhr
End Class
-
1 likes, 0 dislikes
4:10
CookieSystem v1 - Computercraftby Cookiebal2,693 views
1:00
My web browserby TheLukas7778628 views
4:25
Tribute to Buddy Leeby hawkei6757 views
7:56
My cars sound systemby hawkei67321 views
8:42
Project Browser Demo 2by wildkatana1,365 views
7:24
Update on my tabbed web browserby MrHawkei677 views
5:24
My Application VERY ADVANCE WebBrowser made in VB 2010by DindaPhobia483 views
16:47
My 1st Massive 1000 Subbies Giveaway/Contest *CLOSE*by CreativeKelly4rmCali6,439 views
2:47
How to Enable a Hidden Feature, Godmode on Windows 7 and Windows Vistaby ImpressiveTutorialz907 views
7:30
Introduction to WEB-SCADAby integraxor842 views
3:09
The Supremes - Back In My Arms Againby John1948TwelveB25,123 views
2:46
The Statler Brothers - Do You Remember Theseby John1948TwelveA64,576 views
4:15
Let's Play Planitia!by ViridianGames25,486 views
3:18
The Statler Brothers - I'll Go To My Grave Loving You (Barbara Mandrel Show)by John1948TwelveA15,590 views
1:32
google body browser : inside you!by Willbax7726,437 views
1:26
Giant Kids in Ads 3by shrinkvid12,504 views
2:21
My Little Investigations - Inaugural Engine Demo - Interrogationsby GabuEx20,965 views
7:34
Create Web Browser in XCodeby 123halo971,699 views
4:00
Meet MyVoice AACby MyVoiceAAC16,413 views
2:40
Embedded Web Server Controlling Garage Doorby ArtyFart5,164 views
- Loading more suggestions...
Link to this comment:
All Comments (0)