Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Visual Basic Programming › Help with tabs in web browser

Help with tabs in web browser

Posts 1–9 of 9 · Page 1 of 1
LA
Laxitive
Help with tabs in web browser
I am making a web browser but could someone please explain to me how to add tabs to it please
#1 · 16y ago
Pixie
Pixie
Quote Originally Posted by Laxitive View Post
I am making a web browser but could someone please explain to me how to add tabs to it please
Add a tab control
Then click "edit tab pages" in the properties window
#2 · 16y ago
LA
Laxitive
I don't get wat I am supposed to do after I add tab control and another question. I have more than 1 form and when I exit out of say like form 2 the text I entered into a textbox doesn't save. How do i make it so when i exit it saves?
#3 · 16y ago
IA
Iamazn1
Add tab control
Then, add 1 webbrowser for each tab you have. After that, just add a textbox+button
Code:
Webbrowser1/2/3/4/5/6.Navigate(TextBox1.Text)
#4 · 16y ago
TR
trevor206
if you go on youtube some guy as a very good tut on this his name is like environmentalnerd or something but go find that.
#5 · 16y ago
stevethehacker
stevethehacker
He has a cool channel
#6 · 16y ago
LA
Laxitive
Quote Originally Posted by trevor206 View Post
if you go on youtube some guy as a very good tut on this his name is like environmentalnerd or something but go find that.
thx a lot but do you have an answer to my second question?
#7 · 16y ago
TR
trevor206
Quote Originally Posted by Laxitive View Post
thx a lot but do you have an answer to my second question?
its all in the video it here watch it

[YOUTUBE]http://www.youtube.com/watch?v=Gd5xh_HF7EE[/YOUTUBE]

just make everything he does in the vid then just copy paste the code.



Code:
Public Class Form1
Dim int As Integer = 0

Private Sub Loading(ByVal sender As Object, ByVal e As Windows.Forms.WebBrowserProgressChangedE ventArgs)
ToolStripProgressBar1.Maximum = e.MaximumProgress
ToolStripProgressBar1.Value = e.CurrentProgress
End Sub

Private Sub Done(ByVal sender As Object, ByVal e As Windows.Forms.WebBrowserDocumentComplete dEventArgs)
TabControl1.SelectedTab.Text = CType(TabControl1.SelectedTab.Controls.I tem(0), WebBrowser).DocumentTitle
ComboBox1.Text = CType(TabControl1.SelectedTab.Controls.I tem(0), WebBrowser).Url.ToString
End Sub

Form1_Load:
Dim Browser As New WebBrowser
TabControl1.TabPages.Add("New Page")
Browser.Name = "Web Browser"
Browser.Dock = DockStyle.Fill
TabControl1.SelectedTab.Controls.Add(Bro wser)
AddHandler Browser.ProgressChanged, AddressOf Loading
AddHandler Browser.DocumentCompleted, AddressOf Done
int = int + 1
CType(TabControl1.SelectedTab.Controls.I tem(0), WebBrowser).GoHome()

Add Tab:
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(Bro wser)
AddHandler Browser.ProgressChanged, AddressOf Loading
AddHandler Browser.DocumentCompleted, AddressOf Done
int = int + 1
CType(TabControl1.SelectedTab.Controls.I tem(0), WebBrowser).GoHome()

Remove Tab:
If Not TabControl1.TabPages.Count = 1 Then
TabControl1.TabPages.RemoveAt(TabControl 1.SelectedIndex)
TabControl1.SelectTab(TabControl1.TabPag es.Count - 1)
int = int - 1
End If

Website Properties:
CType(TabControl1.SelectedTab.Controls.I tem(0), WebBrowser).ShowPropertiesDialog

Back:
CType(TabControl1.SelectedTab.Controls.I tem(0), WebBrowser).GoBack()

Forward:
CType(TabControl1.SelectedTab.Controls.I tem(0), WebBrowser).GoForward()

Refresh:
CType(TabControl1.SelectedTab.Controls.I tem(0), WebBrowser).Refresh()

Stop:
CType(TabControl1.SelectedTab.Controls.I tem(0), WebBrowser).Stop()

Home:
CType(TabControl1.SelectedTab.Controls.I tem(0), WebBrowser).GoHome()

Go:
CType(TabControl1.SelectedTab.Controls.I tem(0), WebBrowser).Navigate(ComboBox1.Text)

Timer1:
ToolStripStatusLabel1.Text = CType(TabControl1.SelectedTab.Controls.I tem(0), WebBrowser).StatusText
#8 · 16y ago
Pixie
Pixie
Quote Originally Posted by trevor206 View Post
if you go on youtube some guy as a very good tut on this his name is like environmentalnerd or something but go find that.
Yeah, if only he was on MPGH...
#9 · 16y ago
Posts 1–9 of 9 · Page 1 of 1

Post a Reply

Similar Threads

  • [Tutorial] How to make a Web Browser with Tabs!By DayumKen in Programming Tutorials
    12Last post 15y ago
  • Help with alt tabbingBy electrocurse in Combat Arms Help
    24Last post 17y ago
  • Web browser helpBy zmansquared in Visual Basic Programming
    27Last post 16y ago
  • [Help] Web browser Components[Solved]By Erinador in Visual Basic Programming
    12Last post 16y ago
  • need help with alt+tabBy walker in Gate To Heaven Hacks
    7Last post 20y ago

Tags for this Thread

#browser#tabs#web