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 › {TUT} Advanced WEBBROWSER

Smile{TUT} Advanced WEBBROWSER

Posts 1–4 of 4 · Page 1 of 1
CO
codyray90
{TUT} Advanced WEBBROWSER
Ok well i just joined this forum and i am a mod on EVERY forum that im on for the VB section atm so il try to acchive that goal here to ok first tut were going to learn is a Advanced WebBrowser ok you can add me on aim its
***********199
or msn its
gcody25@hotmail.com

Ok well anyway this is in VB 2005/2008

Ok so first get your interface set up it should basicley have these things

Search,back,forward,home,refresh,Add tab,Delete Tab,Tab Control,shrtscuts (linklabels) and a shortcut manager Ok well when you got all that and you made it look nice now its time for the code
Ok so now double click on your Add Tab Button and type this

Dim w/e you want il just say browse
Dim browse As New WebBrowser
Dim i As Integer = 1
TabControl1.Tabpages.Add(i, "Page " & i)
TabControl1.SelectTab(i - 1)
browse.Name = "Name Here"
browse.Dock = Dockstyle.Fill
TabControl1.SelectedTab.Controls.Add(browse)
i = i + 1


So when you have that just copy/paste it in form load ok so you have it on add tab and form load now ill tell you what it meens
Dim browse As New WebBrowser meen that your declaring "browse" as the new webBrowser
Dim i as integer = 1 meens your declaring i as a integer and it equals 1
TabControl1.Tabpages.Add(i, "page " & i) meens that your going to the tabpages of tabcontrol and adding one every time you hit it
and the rest are pretty self explainatory now your time for your delete tab

Double click on it and type

TabControl1.Tabpages.RemoveAT(TabControl1.Selected Index)
TabControl1.SelectTab(TabControl1.TabPages.Count - 1)
i = i - 1

And thats pretty explainatory ok well thats it for writeing lol

Il make the 2nd half of the tut in about 30 mins
#1 · edited 17y ago · 17y ago
AV
avidmovies
good tut! although it is really for beginners...
#2 · 17y ago
NatureSkillz
NatureSkillz
Ty, maybe u could use more spaces cuz its hard to read
#3 · 17y ago
jvwarrior
jvwarrior
I dont get it, it always gives me an error on TabControl1? Says its undeclared
#4 · 17y ago
Posts 1–4 of 4 · Page 1 of 1

Post a Reply

Similar Threads

  • How to make an advanced webbrowserBy L3G0 in Programming Tutorials
    26Last post 13y ago
  • FallenDark's Advanced WebBrowserBy FallenDark in Visual Basic Programming
    22Last post 15y ago
  • Advanced Full Sig TutBy -[standoff]- in Tutorials
    17Last post 19y ago
  • [TUT]How to make a webbrowserBy frono15 in Programming Tutorials
    5Last post 18y ago
  • [tut] new tut for starting hackers... again, making advanced hacks i guessBy blackdrag0 in WarRock - International Hacks
    21Last post 19y ago

Tags for this Thread

#advanced#tut#webbrowser